summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-03-16 16:33:53 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-03-16 16:33:53 +0100
commitf8b2580037a8661c1b2fbc54f0476f7c751600b4 (patch)
treeefdeeb3c0578813fa7db13f2df319d8cf42efbee
parent2a87bc045d3fb6c7d576cb7709984d810fd08a11 (diff)
parent4a624aef1fbeb2cc6934924f9812ed61b4218239 (diff)
Merge branch 'ban-fuchsia'
-rw-r--r--.builds/debian.yml3
-rw-r--r--deny.toml1
2 files changed, 4 insertions, 0 deletions
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
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.