From 8914c366d5dc60f88e910db6c598ca9fb0899d66 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 13 Mar 2021 10:35:22 +0100 Subject: Ban fuchsia-cprgn So we do not accidentially update diesel or some other lib and depend on it by accident. Signed-off-by: Matthias Beyer --- deny.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/deny.toml b/deny.toml index 57ee31c..4d12353 100644 --- a/deny.toml +++ b/deny.toml @@ -48,6 +48,7 @@ allow = [ deny = [ # Each entry the name of a crate and a version range. If version is # not specified, all versions will be matched. + { name = "fuchsia-cprng" } ] # Certain crates/versions that will be skipped when doing duplicate detection. -- cgit v1.2.3 From 4a624aef1fbeb2cc6934924f9812ed61b4218239 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 13 Mar 2021 10:36:46 +0100 Subject: Add lint in CI to check banned crates Signed-off-by: Matthias Beyer --- .builds/debian.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.builds/debian.yml b/.builds/debian.yml index cd1b785..a5619a5 100644 --- a/.builds/debian.yml +++ b/.builds/debian.yml @@ -13,6 +13,9 @@ tasks: - lint-licenses: | cd butido PATH="$HOME/.cargo/bin:$PATH" cargo deny check licenses + - lint-bans: | + cd butido + PATH="$HOME/.cargo/bin:$PATH" cargo deny check bans - lint-sources: | cd butido PATH="$HOME/.cargo/bin:$PATH" cargo deny check sources -- cgit v1.2.3