Rollup merge of #64847 - mati865:env_logger, r=alexcrichton

Upgrade env_logger to 0.7

`./x.py test` passed locally.
This commit is contained in:
Mazdak Farrokhzad 2019-09-28 05:37:57 +02:00 committed by GitHub
commit e3a5179c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -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",
@ -3409,7 +3409,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",

View File

@ -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_data_structures = { path = "../librustc_data_structures" }

View File

@ -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"