aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2020-10-26 13:16:43 -0700
committerChih-Hung Hsieh <chh@google.com>2020-10-26 13:16:43 -0700
commit775f0ab2cd77a1117a5aaa8e42e024978b6751fe (patch)
tree24df3bd9491a6c70c4387b6e8424b56b7ebbefc3 /Cargo.toml.orig
parent3b9faf31ab68aae48b7be24493da10896ce6a39a (diff)
downloadenv_logger-775f0ab2cd77a1117a5aaa8e42e024978b6751fe.tar.gz
Upgrade rust/crates/env_logger to 0.8.1
Test: make Change-Id: Ib080f501551c0b5aab9b76c1fb9132040bc9731b
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig8
1 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 148543b..837c72b 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,11 +1,11 @@
[package]
name = "env_logger"
edition = "2018"
-version = "0.7.1" # remember to update html_root_url
+version = "0.8.1" # remember to update html_root_url
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
-repository = "https://github.com/sebasmagri/env_logger/"
+repository = "https://github.com/env-logger-rs/env_logger/"
documentation = "https://docs.rs/env_logger"
description = """
A logging implementation for `log` which is configured via an environment
@@ -21,9 +21,9 @@ members = [
[dependencies]
log = { version = "0.4.8", features = ["std"] }
-regex = { version = "1.0.3", optional = true }
+regex = { version = "1.0.3", optional = true, default-features=false, features=["std", "perf"] }
termcolor = { version = "1.0.2", optional = true }
-humantime = { version = "1.3", optional = true }
+humantime = { version = "2.0.0", optional = true }
atty = { version = "0.2.5", optional = true }
[[test]]