Cargo.toml 343 B

1234567891011
  1. [package]
  2. name = "simple_logger"
  3. version = "1.1.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. [dependencies]
  9. log = { version = "^0.4.5", features = ["std"] }
  10. chrono = "0.4.6"