1## BIG SCARY NOTE 2# This Cargo.toml does not match the repo conventions YET 3# Before releasing to crates.io: make it so! 4 5[package] 6name = "tracing-mock" 7version = "0.1.0" 8authors = [ 9 "Eliza Weisman <eliza@buoyant.io>", 10 "Tokio Contributors <team@tokio.rs>", 11] 12license = "MIT" 13readme = "README.md" 14repository = "https://github.com/tokio-rs/tracing" 15homepage = "https://tokio.rs" 16edition = "2018" 17rust-version = "1.49.0" 18publish = false 19 20[dependencies] 21tracing = { path = "../tracing", version = "0.1.35", default-features = false } 22tracing-core = { path = "../tracing-core", version = "0.1.28", default-features = false } 23tokio-test = { version = "0.4.2", optional = true } 24 25# Fix minimal-versions; tokio-test fails with otherwise acceptable 0.1.0 26tokio-stream = { version = "0.1.9", optional = true } 27 28[package.metadata.docs.rs] 29all-features = true 30rustdoc-args = ["--cfg", "docsrs"] 31