1[package] 2name = "tracing-tower" 3version = "0.1.0" 4authors = ["Eliza Weisman <eliza@buoyant.io>"] 5edition = "2018" 6repository = "https://github.com/tokio-rs/tracing" 7homepage = "https://tokio.rs" 8description = """ 9Compatibility with the `tower` ecosystem. 10""" 11categories = [ 12 "development-tools::debugging", 13 "development-tools::profiling", 14 "asynchronous", 15] 16keywords = ["logging", "tracing"] 17license = "MIT" 18rust-version = "1.49.0" 19 20[features] 21default = ["tower-layer", "tower-make"] 22tower-make = [ 23 "tower_make", 24 "pin-project-lite", 25] 26 27[dependencies] 28tracing = { path = "../tracing", version = "0.1.35", default-features = false, features = ["std"] } 29tracing-futures = { version = "0.2.1", path = "../tracing-futures", features = ["std-future"] } 30futures = "0.3.21" 31tower-service = "0.3.2" 32tower-layer = { version = "0.3.1", optional = true } 33tower_make = { package = "tower-make", version = "0.3.0", optional = true } 34pin-project-lite = { version = "0.2.9", optional = true } 35http = { version = "0.2.8", optional = true } 36 37[badges] 38maintenance = { status = "experimental" } 39 40[package.metadata.docs.rs] 41all-features = true 42rustdoc-args = ["--cfg", "docsrs"] 43