[package] name = "tracing-formatters" version = "0.0.1" edition = "2021" authors = ["Anders Blenstrup-Pedersen "] description = "Tracing output formatters" readme = "README.md" categories = [""] keywords = ["tracing-formatter", "tracing"] license = "MIT" repository = "https://github.com/nebula-technologies/tracing-formatters" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = [] bunyan = ["dep:serde", "dep:serde_json"] syslog = [] [dependencies] actix-web = "4.2.1" chrono = "0.4.23" gethostname = "0.4.0" openssl = "0.10.42" serde = { version = "1.0.150", optional = true } serde_json = { version = "1.0.89", optional = true } tracing = "0.1.37" tracing-actix-web = "0.6.2" tracing-subscriber = "0.3.16"