1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies 7# 8# If you believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14edition = "2018" 15name = "env_logger" 16version = "0.8.3" 17authors = ["The Rust Project Developers"] 18include = ["src/**/*", "tests", "LICENSE-*", "README.md", "CHANGELOG.md"] 19description = "A logging implementation for `log` which is configured via an environment\nvariable.\n" 20documentation = "https://docs.rs/env_logger" 21readme = "README.md" 22keywords = ["logging", "log", "logger"] 23categories = ["development-tools::debugging"] 24license = "MIT/Apache-2.0" 25repository = "https://github.com/env-logger-rs/env_logger/" 26 27[[test]] 28name = "regexp_filter" 29harness = false 30 31[[test]] 32name = "log-in-log" 33harness = false 34 35[[test]] 36name = "log_tls_dtors" 37harness = false 38 39[[test]] 40name = "init-twice-retains-filter" 41harness = false 42[dependencies.atty] 43version = "0.2.5" 44optional = true 45 46[dependencies.humantime] 47version = "2.0.0" 48optional = true 49 50[dependencies.log] 51version = "0.4.8" 52features = ["std"] 53 54[dependencies.regex] 55version = "1.0.3" 56features = ["std", "perf"] 57optional = true 58default-features = false 59 60[dependencies.termcolor] 61version = "1.0.2" 62optional = true 63 64[features] 65default = ["termcolor", "atty", "humantime", "regex"] 66