# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "simple_logger" version = "5.0.0" authors = ["Sam Clements "] description = "A logger that prints all messages with a readable output format" readme = "README.md" license = "MIT" repository = "https://github.com/borntyping/rust-simple_logger" [[example]] name = "colors" required-features = ["colors"] [[example]] name = "stderr" required-features = [ "colors", "stderr", ] [[example]] name = "threads" required-features = ["threads"] [[example]] name = "timestamps_local" required-features = ["timestamps"] [[example]] name = "timestamps_none" required-features = ["timestamps"] [[example]] name = "timestamps_utc" required-features = ["timestamps"] [[example]] name = "timestamps_utc_offset" required-features = ["timestamps"] [[example]] name = "timestamps_format" required-features = ["timestamps"] [dependencies.colored] version = "2" optional = true [dependencies.log] version = "^0.4.17" features = ["std"] [dependencies.time] version = "^0.3.16" features = [ "formatting", "local-offset", "macros", ] optional = true [features] colors = ["colored"] default = [ "colors", "timestamps", ] nightly = [] stderr = [] threads = [] timestamps = ["time"] [target."cfg(windows)".dependencies.windows-sys] version = "^0.48.0" features = [ "Win32_System_Console", "Win32_Foundation", ]