summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-07-27 16:36:34 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-07-27 16:36:34 +0200
commit9e12e114ef8bc1120f87431b85331df50cd31181 (patch)
treeabd103e5822058d90aab0c301021778b8228db5e
parent9b0c6cb3253798d3eb6aa12ffddb66eda0bcb847 (diff)
parent2e92ef6443579b55cc73a8d6be2074ae047fff5a (diff)
Merge branch 'update-dependencies'
-rw-r--r--Cargo.toml6
-rw-r--r--src/main.rs1
2 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b982d11..6c29ecc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -36,7 +36,7 @@ daggy = { version = "0.7", features = [ "serde" ] }
dialoguer = "0.8"
diesel = { version = ">=1.4.6", features = ["postgres", "chrono", "uuid", "serde_json"] }
diesel_migrations = "*"
-env_logger = "0.8"
+env_logger = "0.9"
filters = "0.4.0"
futures = "0.3"
getset = "0.1"
@@ -94,3 +94,7 @@ rand = "=0.4.3"
# See https://github.com/bitvecto-rs/bitvec/issues/105#issuecomment-778570981
funty = "=1.1.0"
+# Pin, because dialoguer pulls it in, but 1.4.x and newer has MSRV 1.51.0. With
+# the pin here, we enforce the build to not use 1.4.0 or newer.
+zeroize = ">=1.3.0, <1.4.0"
+
diff --git a/src/main.rs b/src/main.rs
index 59dd559..f32b3a5 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -62,6 +62,7 @@ use logcrate::error;
use rand as _; // Required to make lints happy
use aquamarine as _; // doc-helper crate
use funty as _; // doc-helper crate
+use zeroize as _; // Required to make lints happy
mod cli;
mod commands;