Cargo.toml 580 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "lib-log"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. tracing-log = { version = "0.1.1"}
  8. tracing-futures = "0.2.4"
  9. tracing-subscriber = { version = "0.2.12", features = ["registry", "env-filter", "ansi", "json"] }
  10. tracing-bunyan-formatter = "0.2.2"
  11. tracing-appender = "0.1"
  12. tracing-core = "0.1"
  13. tracing = { version = "0.1", features = ["log"] }
  14. log = "0.4.14"
  15. serde_json = "1.0"
  16. serde = "1.0"
  17. chrono = "0.4"
  18. lazy_static = "1.4.0"
  19. [features]
  20. use_bunyan = []