Skip to content

Commit d7e84f0

Browse files
committed
ci(deny): Allow path/git crate dependencies
The default behaviour for `cargo-deny`'s wildcard ban disallows path or git crates by default for compatibility with crates.io. Since this is a private crate, we should allow these.
1 parent 6ba0cea commit d7e84f0

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.github/workflows/argus-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# SHOULD DO: dedupe these and clean them up
21
on:
32
push:
43
branches: [main]

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ ignore = true
2929
multiple-versions = "warn"
3030
# Lint level for when a crate version requirement is `*`
3131
wildcards = "deny"
32+
allows-wildcard-paths = true
3233
# The graph highlighting used when creating dotgraphs for crates
3334
# with multiple versions
3435
# * lowest-version - The path to the lowest versioned duplicate is highlighted

0 commit comments

Comments
 (0)