Cargo.toml 491 B

12345678910111213141516171819
  1. [package]
  2. name = "flowy-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 = { version = "0.1", features = ["log"] }
  13. log = "0.4.14"
  14. [features]
  15. use_bunyan = []