blob: 29c77b3b1c85cdb9e2ee9e413b9665e11c207ec3 [file] [log] [blame]
Joel Galenson02ba2072020-06-30 12:49:57 -07001[package]
2name = "env_logger"
3edition = "2018"
Joel Galenson23dcbc72021-08-09 10:28:22 -07004version = "0.9.0"
Joel Galenson02ba2072020-06-30 12:49:57 -07005authors = ["The Rust Project Developers"]
6license = "MIT/Apache-2.0"
7readme = "README.md"
Chih-Hung Hsieh775f0ab2020-10-26 13:16:43 -07008repository = "https://github.com/env-logger-rs/env_logger/"
Joel Galenson02ba2072020-06-30 12:49:57 -07009documentation = "https://docs.rs/env_logger"
10description = """
11A logging implementation for `log` which is configured via an environment
12variable.
13"""
14categories = ["development-tools::debugging"]
15keywords = ["logging", "log", "logger"]
Haibo Huangfec76ba2021-02-11 18:59:33 -080016include = ["src/**/*", "tests", "LICENSE-*", "README.md", "CHANGELOG.md"]
Joel Galenson02ba2072020-06-30 12:49:57 -070017
18[workspace]
19members = [
20 "ci"
21]
22
23[dependencies]
24log = { version = "0.4.8", features = ["std"] }
Chih-Hung Hsieh775f0ab2020-10-26 13:16:43 -070025regex = { version = "1.0.3", optional = true, default-features=false, features=["std", "perf"] }
Joel Galenson02ba2072020-06-30 12:49:57 -070026termcolor = { version = "1.0.2", optional = true }
Chih-Hung Hsieh775f0ab2020-10-26 13:16:43 -070027humantime = { version = "2.0.0", optional = true }
Joel Galenson02ba2072020-06-30 12:49:57 -070028atty = { version = "0.2.5", optional = true }
29
30[[test]]
31name = "regexp_filter"
32harness = false
33
34[[test]]
35name = "log-in-log"
36harness = false
37
38[[test]]
39name = "log_tls_dtors"
40harness = false
41
42[[test]]
43name = "init-twice-retains-filter"
44harness = false
45
46[features]
47default = ["termcolor", "atty", "humantime", "regex"]