summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-02-15 09:20:51 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-02-15 09:43:54 +0100
commitdb698a4c7bdef756268321bda455e28f829026cf (patch)
tree83c93c6fcb336755de8f0b886d48208726dfe201
parentf0ec6d45a591bddda34ec26ab6289dbd56800f67 (diff)
Force "funty" to 1.1.0
This forces the transitive dependency of "bitvec", named "funty", to 1.1.0. Rationale: https://github.com/bitvecto-rs/bitvec/issues/105#issuecomment-778570981 Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
-rw-r--r--Cargo.toml3
-rw-r--r--src/main.rs1
2 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 52c0122..a04651c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -75,3 +75,6 @@ which = "4"
# Upstream issue: https://github.com/rust-random/rand/issues/1071
rand = "=0.4.3"
+# See https://github.com/bitvecto-rs/bitvec/issues/105#issuecomment-778570981
+funty = "=1.1.0"
+
diff --git a/src/main.rs b/src/main.rs
index 606a951..50bbe4a 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -58,6 +58,7 @@ use logcrate::debug;
use walkdir::WalkDir;
use rand as _; // Required to make lints happy
use aquamarine as _; // doc-helper crate
+use funty as _; // doc-helper crate
mod cli;
mod commands;