summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-02-15 09:58:42 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-02-15 09:58:42 +0100
commite02e8359530def544d51f829cc0f2ff68a9afc3e (patch)
tree2a9e2e1de6de59dd659948f83d0338af5520e15b
parentf0ec6d45a591bddda34ec26ab6289dbd56800f67 (diff)
parent7e3f0ce1cff4b28dea768597a33d6db532edb50b (diff)
Merge branch 'hotfix-bitvecdep'
This happens if some dependency does not follow semver.
-rw-r--r--.builds/debian.yml2
-rw-r--r--Cargo.toml3
-rw-r--r--src/main.rs1
3 files changed, 5 insertions, 1 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml
index 1fb3f3d..cd1b785 100644
--- a/.builds/debian.yml
+++ b/.builds/debian.yml
@@ -9,7 +9,7 @@ packages:
tasks:
- install: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.50.0
- prepare_lint: |
- PATH="$HOME/.cargo/bin:$PATH" cargo install cargo-deny
+ PATH="$HOME/.cargo/bin:$PATH" cargo install cargo-deny --locked
- lint-licenses: |
cd butido
PATH="$HOME/.cargo/bin:$PATH" cargo deny check licenses
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;