Cargo.toml 425 B

123456789101112131415
  1. [package]
  2. name = "simple_logger"
  3. version = "1.2.0"
  4. license = "MIT"
  5. authors = ["Sam Clements <sam@borntyping.co.uk>"]
  6. description = "A logger that prints all messages with a readable output format"
  7. repository = "https://github.com/borntyping/rust-simple_logger"
  8. [features]
  9. default = ["colored"]
  10. [dependencies]
  11. log = { version = "^0.4.5", features = ["std"] }
  12. chrono = "0.4.6"
  13. colored = { version = "^1.6", optional = true }