[package] name = "dogtail" version = "0.1.0" edition = "2021" authors = ["Oliver Browne"] description = "Tail datadog logs to files, or stdout" license = "MIT" readme = "README.md" repository = "https://github.com/oliverbrowneprima/dogtail" homepage = "https://github.com/oliverbrowneprima/dogtail" categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.75" clap = { version = "4.4.4", features = ["derive"] } rand = "0.8.5" reqwest = { version = "0.11.20", features = ["json", "gzip"] } serde_json = "1.0.106" tokio = { version = "1.32.0", features = ["full"] } tokio-stream = "0.1.14" tracing = "0.1.37" tracing-appender = "0.2.2" tracing-subscriber = {version = "0.3.17", features = ["env-filter"] } tracing-tree = { path = "../tracing-tree", version = "0.2.4", features = ["time"] }