Cargo.toml 585 B

12345678910111213141516171819
  1. [package]
  2. name = "simple_logger"
  3. version = "1.4.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", "chrono"]
  10. [dependencies]
  11. log = { version = "^0.4.5", features = ["std"] }
  12. chrono = { version = "0.4.6", optional = true }
  13. colored = { version = "^1.6", optional = true }
  14. [target.'cfg(windows)'.dependencies]
  15. atty = "0.2.13"
  16. winapi = { version = "0.3", features = ["handleapi", "winbase"]}