summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authortokiedokie <thetokiedokie@gmail.com>2020-09-04 05:16:49 +0900
committerGitHub <noreply@github.com>2020-09-03 16:16:49 -0400
commitfcee4265c605c09062d7cb2984c2776e8b8f0247 (patch)
tree4a6b909e035a7f8678f22122fc4b530d6c6caeb6 /Cargo.lock
parentdbd941148c472171eacec364c689a2a50fa0653d (diff)
support env_logger / RUST_LOG (#7142)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock23
1 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d51e476bf..0ff3e3a33 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -388,6 +388,7 @@ dependencies = [
"dlopen",
"dprint-plugin-typescript",
"encoding_rs",
+ "env_logger",
"filetime",
"futures",
"fwdansi",
@@ -587,6 +588,19 @@ dependencies = [
]
[[package]]
+name = "env_logger"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
+dependencies = [
+ "atty",
+ "humantime",
+ "log 0.4.11",
+ "regex",
+ "termcolor",
+]
+
+[[package]]
name = "errno"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -910,6 +924,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
[[package]]
+name = "humantime"
+version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
+dependencies = [
+ "quick-error",
+]
+
+[[package]]
name = "hyper"
version = "0.13.6"
source = "registry+https://github.com/rust-lang/crates.io-index"