about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMateusz Mikuła <matti@marinelayer.io>2019-09-26 13:19:14 +0200
committerMateusz Mikuła <mati865@gmail.com>2019-09-26 13:19:14 +0200
commit3e4f5826990b85b99e0d3cb9e47867e6ce6737e1 (patch)
tree399ecae20218028de253899c24a84569c5cceb31
parentdc45735f29788924b9fc351d100e5bf3ebdca162 (diff)
downloadrust-3e4f5826990b85b99e0d3cb9e47867e6ce6737e1.tar.gz
rust-3e4f5826990b85b99e0d3cb9e47867e6ce6737e1.zip
Upgrade env_logger to 0.7
-rw-r--r--Cargo.lock4
-rw-r--r--src/librustc_driver/Cargo.toml2
-rw-r--r--src/tools/compiletest/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cbaf7d801ca..df79a180aaa 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -534,7 +534,7 @@ name = "compiletest"
 version = "0.0.0"
 dependencies = [
  "diff",
- "env_logger 0.6.2",
+ "env_logger 0.7.0",
  "getopts",
  "lazy_static 1.3.0",
  "libc",
@@ -3420,7 +3420,7 @@ dependencies = [
 name = "rustc_driver"
 version = "0.0.0"
 dependencies = [
- "env_logger 0.6.2",
+ "env_logger 0.7.0",
  "graphviz",
  "lazy_static 1.3.0",
  "log",
diff --git a/src/librustc_driver/Cargo.toml b/src/librustc_driver/Cargo.toml
index 25f67b30468..9dc5c163fcc 100644
--- a/src/librustc_driver/Cargo.toml
+++ b/src/librustc_driver/Cargo.toml
@@ -13,7 +13,7 @@ crate-type = ["dylib"]
 graphviz = { path = "../libgraphviz" }
 lazy_static = "1.0"
 log = "0.4"
-env_logger = { version = "0.6", default-features = false }
+env_logger = { version = "0.7", default-features = false }
 rustc = { path = "../librustc" }
 rustc_target = { path = "../librustc_target" }
 rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
diff --git a/src/tools/compiletest/Cargo.toml b/src/tools/compiletest/Cargo.toml
index 745233c151c..80ef8dd6626 100644
--- a/src/tools/compiletest/Cargo.toml
+++ b/src/tools/compiletest/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2018"
 
 [dependencies]
 diff = "0.1.10"
-env_logger = { version = "0.6", default-features = false }
+env_logger = { version = "0.7", default-features = false }
 getopts = "0.2"
 log = "0.4"
 regex = "1.0"