Skip to content

Commit

Permalink
meta: fixup missing repository links on crates.io (#228)
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Gautier <[email protected]>
  • Loading branch information
baloo authored and hawkw committed Jul 31, 2019
1 parent c1a9b6c commit 80a5f49
Show file tree
Hide file tree
Showing 11 changed files with 119 additions and 1 deletion.
12 changes: 12 additions & 0 deletions tracing-env-logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 3 additions & 1 deletion tracing-fmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
Expand Down
13 changes: 13 additions & 0 deletions tracing-futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
12 changes: 12 additions & 0 deletions tracing-log/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
13 changes: 13 additions & 0 deletions tracing-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
13 changes: 13 additions & 0 deletions tracing-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 13 additions & 0 deletions tracing-serde/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 12 additions & 0 deletions tracing-slog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 2 additions & 0 deletions tracing-subscriber/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
13 changes: 13 additions & 0 deletions tracing-tower-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
13 changes: 13 additions & 0 deletions tracing-tower/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 80a5f49

Please sign in to comment.