diff --git a/tracing-env-logger/Cargo.toml b/tracing-env-logger/Cargo.toml index 079d801391..29c1094861 100644 --- a/tracing-env-logger/Cargo.toml +++ b/tracing-env-logger/Cargo.toml @@ -2,6 +2,18 @@ name = "tracing-env-logger" version = "0.1.0" authors = ["Eliza Weisman "] +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" } diff --git a/tracing-fmt/Cargo.toml b/tracing-fmt/Cargo.toml index 353abd34af..3b231e5a2f 100644 --- a/tracing-fmt/Cargo.toml +++ b/tracing-fmt/Cargo.toml @@ -4,7 +4,9 @@ version = "0.0.1-alpha.1" authors = ["Eliza Weisman "] 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 """ diff --git a/tracing-futures/Cargo.toml b/tracing-futures/Cargo.toml index e64ee3ddf8..76bfba7bc9 100644 --- a/tracing-futures/Cargo.toml +++ b/tracing-futures/Cargo.toml @@ -3,6 +3,19 @@ name = "tracing-futures" version = "0.0.1" authors = ["Eliza Weisman "] 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"] diff --git a/tracing-log/Cargo.toml b/tracing-log/Cargo.toml index 64ebb7ef7e..498482b589 100644 --- a/tracing-log/Cargo.toml +++ b/tracing-log/Cargo.toml @@ -3,6 +3,18 @@ name = "tracing-log" version = "0.0.1" authors = ["Eliza Weisman "] 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" diff --git a/tracing-macros/Cargo.toml b/tracing-macros/Cargo.toml index e9b86f6a38..8d01618afd 100644 --- a/tracing-macros/Cargo.toml +++ b/tracing-macros/Cargo.toml @@ -3,6 +3,19 @@ name = "tracing-macros" version = "0.1.0" authors = ["Eliza Weisman "] 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" } diff --git a/tracing-proc-macros/Cargo.toml b/tracing-proc-macros/Cargo.toml index a0ecae7759..ff93cff4ab 100644 --- a/tracing-proc-macros/Cargo.toml +++ b/tracing-proc-macros/Cargo.toml @@ -2,6 +2,19 @@ name = "tracing-proc-macros" version = "0.1.0" authors = ["Eliza Weisman ", "David Barsky "] +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 diff --git a/tracing-serde/Cargo.toml b/tracing-serde/Cargo.toml index 8d2f044178..8bc54b9980 100644 --- a/tracing-serde/Cargo.toml +++ b/tracing-serde/Cargo.toml @@ -4,6 +4,19 @@ version = "0.1.0" authors = ["Tokio Contributors "] 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" diff --git a/tracing-slog/Cargo.toml b/tracing-slog/Cargo.toml index a34ba101f8..ca487e0144 100644 --- a/tracing-slog/Cargo.toml +++ b/tracing-slog/Cargo.toml @@ -3,6 +3,18 @@ name = "tracing-slog" version = "0.1.0" authors = ["David Barsky "] 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" diff --git a/tracing-subscriber/Cargo.toml b/tracing-subscriber/Cargo.toml index 1ba97f2a73..238e6b3c60 100644 --- a/tracing-subscriber/Cargo.toml +++ b/tracing-subscriber/Cargo.toml @@ -5,6 +5,8 @@ authors = ["Eliza Weisman ", "Tokio Contributors "] 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" diff --git a/tracing-tower/Cargo.toml b/tracing-tower/Cargo.toml index 57a6389968..07660a392b 100644 --- a/tracing-tower/Cargo.toml +++ b/tracing-tower/Cargo.toml @@ -3,6 +3,19 @@ name = "tracing-tower" version = "0.1.0" authors = ["Eliza Weisman "] 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"]