[package] name = "tracing-ecs" version = "0.4.1" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/zenria/tracing-ecs" description = "Tracing subscriber that output ECS (Elastic Common Schema) JSON log lines" keywords = ["tracing", "elastic", "ecs", "logging"] categories = ["development-tools::debugging"] authors = ["Philippe GASSMANN "] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" tracing = "0.1" tracing-core = "0.1" thiserror = "1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-log = "0.2" chrono = "0.4" [dev-dependencies] log = "0.4" maplit = "1" criterion = { version = "0.5", features = ["html_reports"] } [[bench]] name = "benchmark" harness = false