1234567891011121314151617181920 |
- [package]
- name = "simple_logger"
- version = "1.11.0"
- license = "MIT"
- authors = ["Sam Clements <[email protected]>"]
- description = "A logger that prints all messages with a readable output format"
- repository = "https://github.com/borntyping/rust-simple_logger"
- edition = "2018"
- [features]
- default = ["colored", "chrono"]
- [dependencies]
- log = { version = "^0.4.5", features = ["std"] }
- chrono = { version = "0.4.6", optional = true }
- colored = { version = "^1.6", optional = true }
- [target.'cfg(windows)'.dependencies]
- atty = "0.2.13"
- winapi = { version = "0.3", features = ["handleapi", "winbase"]}
|