Cargo.toml 603 B

1234567891011121314151617181920
  1. [package]
  2. name = "simple_logger"
  3. version = "1.11.0"
  4. license = "MIT"
  5. authors = ["Sam Clements <[email protected]>"]
  6. description = "A logger that prints all messages with a readable output format"
  7. repository = "https://github.com/borntyping/rust-simple_logger"
  8. edition = "2018"
  9. [features]
  10. default = ["colored", "chrono"]
  11. [dependencies]
  12. log = { version = "^0.4.5", features = ["std"] }
  13. chrono = { version = "0.4.6", optional = true }
  14. colored = { version = "^1.6", optional = true }
  15. [target.'cfg(windows)'.dependencies]
  16. atty = "0.2.13"
  17. winapi = { version = "0.3", features = ["handleapi", "winbase"]}