We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11ae11c commit 46d2099Copy full SHA for 46d2099
1 file changed
.circleci/config.yml
@@ -271,8 +271,10 @@ jobs:
271
command: cargo install cargo-deny --locked
272
- run:
273
name: cargo-deny Checks
274
- command: cargo deny check -s
275
-
+ # `--warn unsound` downgrades RustSec `informational = "unsound"`
+ # advisories to warnings, they flag API soundness concerns, not
276
+ # exploitable vulnerabilities, so we don't want them to fail CI.
277
+ command: cargo deny check -s --warn unsound
278
doc:
279
docker:
280
- image: quay.io/influxdb/rust:ci
0 commit comments