1[package] 2name = "tracing-appender" 3version = "0.2.2" 4authors = [ 5 "Zeki Sherif <zekshi@amazon.com>", 6 "Tokio Contributors <team@tokio.rs>" 7] 8license = "MIT" 9readme = "README.md" 10repository = "https://github.com/tokio-rs/tracing" 11homepage = "https://tokio.rs" 12description = """ 13Provides utilities for file appenders and making non-blocking writers. 14""" 15categories = [ 16 "development-tools::debugging", 17 "asynchronous", 18] 19keywords = ["logging", "tracing", "file-appender", "non-blocking-writer"] 20edition = "2018" 21rust-version = "1.53.0" 22 23[dependencies] 24crossbeam-channel = "0.5.6" 25time = { version = "0.3.2", default-features = false, features = ["formatting", "parsing"] } 26parking_lot = { optional = true, version = "0.12.1" } 27thiserror = "1" 28 29[dependencies.tracing-subscriber] 30path = "../tracing-subscriber" 31version = "0.3.0" 32default-features = false 33features = ["fmt", "std"] 34 35[dev-dependencies] 36criterion = { version = "0.3.6", default-features = false } 37tracing = { path = "../tracing", version = "0.1.35" } 38tempfile = "3" 39 40[[bench]] 41name = "bench" 42harness = false 43