From 3e4f5826990b85b99e0d3cb9e47867e6ce6737e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Miku=C5=82a?= Date: Thu, 26 Sep 2019 13:19:14 +0200 Subject: [PATCH] Upgrade env_logger to 0.7 --- Cargo.lock | 4 ++-- src/librustc_driver/Cargo.toml | 2 +- src/tools/compiletest/Cargo.toml | 2 +- 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"