-
Notifications
You must be signed in to change notification settings - Fork 741
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta: fixup missing repository links on crates.io (#228)
Signed-off-by: Arthur Gautier <[email protected]>
- Loading branch information
Showing
11 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,18 @@ | |
name = "tracing-env-logger" | ||
version = "0.1.0" | ||
authors = ["Eliza Weisman <[email protected]>"] | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-env-logger/0.1.0/tracing_env_logger" | ||
description = """ | ||
A tracing subscriber that logs trace events using the `env_logger` crate | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
license = "MIT" | ||
|
||
[dependencies] | ||
tracing-log = { path = "../tracing-log" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,9 @@ version = "0.0.1-alpha.1" | |
authors = ["Eliza Weisman <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
documentation = "https://docs.rs/tracing-fmt/0.0.1-alpha.1/tracing-fmt" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-fmt/0.0.1-alpha.1/tracing_fmt" | ||
description = """ | ||
A (currently experimental) `tracing` subscriber that formats and logs trace data | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,19 @@ name = "tracing-futures" | |
version = "0.0.1" | ||
authors = ["Eliza Weisman <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
documentation = "https://docs.rs/tracing-futures/0.0.1/tracing_futures" | ||
homepage = "https://tokio.rs" | ||
description = """ | ||
Utilities for instrumenting `futures` | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"development-tools::profiling", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
license = "MIT" | ||
|
||
[features] | ||
default = ["futures-01", "tokio"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,18 @@ name = "tracing-log" | |
version = "0.0.1" | ||
authors = ["Eliza Weisman <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-log/0.0.1/tracing_log" | ||
description = """ | ||
Provides compatibility between `tracing` and `log` crate | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
license = "MIT" | ||
|
||
[dependencies] | ||
tracing-core = "0.1.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,19 @@ name = "tracing-macros" | |
version = "0.1.0" | ||
authors = ["Eliza Weisman <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-macros/0.1.0/tracing_macros" | ||
description = """ | ||
Macros for emitting trace events | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"development-tools::profiling", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
license = "MIT" | ||
|
||
[dependencies] | ||
tracing = { version = "0.1", path = "../tracing" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,19 @@ | |
name = "tracing-proc-macros" | ||
version = "0.1.0" | ||
authors = ["Eliza Weisman <[email protected]>", "David Barsky <[email protected]>"] | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-proc-macros/0.1.0/tracing_proc_macros" | ||
description = """ | ||
Procedural macro attributes for automatically instrumenting function.s | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"development-tools::profiling", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
license = "MIT" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,19 @@ version = "0.1.0" | |
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-serde/0.1.0/tracing_serde" | ||
description = """ | ||
A compatibility layer for serializing trace data with `serde` | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"development-tools::profiling", | ||
"asynchronous", | ||
"encoding", | ||
] | ||
keywords = ["logging", "tracing", "serialization"] | ||
|
||
[dependencies] | ||
serde = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,18 @@ name = "tracing-slog" | |
version = "0.1.0" | ||
authors = ["David Barsky <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-slog/0.1.0/tracing_slog" | ||
description = """ | ||
Provides compatibility between `tracing` and `slog` crate | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
license = "MIT" | ||
|
||
[dependencies] | ||
tracing = "0.1.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected] | |
edition = "2018" | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-subscriber/0.0.1-alpha.1/tracing-subscriber" | ||
description = """ | ||
Utilities for implementing and composing `tracing` subscribers. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,19 @@ name = "tracing-tower-http" | |
version = "0.1.0" | ||
authors = ["Eliza Weisman <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
license = "MIT" | ||
documentation = "https://docs.rs/tracing-tower-http/0.1.0/tracing_tower_http" | ||
description = """ | ||
`tower` compatibility for HTTP services. | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"development-tools::profiling", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
|
||
[dependencies] | ||
tracing = "0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,19 @@ name = "tracing-tower" | |
version = "0.1.0" | ||
authors = ["Eliza Weisman <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tracing-tower/0.1.0/tracing_tower" | ||
description = """ | ||
Compatibility with the `tower` ecosystem. | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"development-tools::profiling", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing"] | ||
license = "MIT" | ||
|
||
[features] | ||
default = ["tower-layer", "tower-util", "http"] | ||
|