Cargo.toml 555 B

1234567891011121314151617181920212223
  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.3"}
  8. tracing-subscriber = { version = "0.2.25", features = ["registry", "env-filter", "ansi", "json"] }
  9. tracing-bunyan-formatter = "0.2.6"
  10. tracing-appender = "0.1"
  11. tracing-core = "0.1"
  12. tracing = { version = "0.1", features = ["log"] }
  13. log = "0.4.17"
  14. serde_json = "1.0"
  15. serde = "1.0"
  16. chrono = "0.4"
  17. lazy_static = "1.4.0"
  18. [features]
  19. use_bunyan = []