summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Orivel <eijebong@bananium.fr>2021-07-31 05:36:56 +0200
committerEmilio Cobos Álvarez <emilio@crisal.io>2021-07-31 13:32:55 +0200
commitfe29f5334aa985e56955b03d5a0d1b8f61eb1a82 (patch)
treedb4d3a13ad2449f9fde8ec3592f986dc33492a6c
parentd79922d763fa048fbc903beacf7dbf25aaad1f75 (diff)
Update env_logger to 0.9
The default output changed to be using target instead of the module path in it but this doesn't seem to be affecting bindgen since it's never overriding it and it defaults to the module path.
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0e93f41a..0bec7b23 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -127,9 +127,9 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
[[package]]
name = "env_logger"
-version = "0.8.1"
+version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "54532e3223c5af90a6a757c90b5c5521564b07e5e7a958681bcd2afad421cdcd"
+checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
dependencies = [
"atty",
"humantime",
diff --git a/Cargo.toml b/Cargo.toml
index 7cf5953b..6292dd87 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -63,7 +63,7 @@ proc-macro2 = { version = "1", default-features = false }
[dependencies.env_logger]
optional = true
-version = "0.8"
+version = "0.9.0"
[dependencies.log]
optional = true