Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

ignore RUSTSEC-2019-0036 #656

Merged
merged 1 commit into from
Mar 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/ci/agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ cd src/agent
cargo fmt -- --check
# RUSTSEC-2020-0016: a dependency net2 (pulled in from tokio) is deprecated
# RUSTSEC-2020-0036: a dependency failure (pulled from proc-maps) is deprecated
cargo audit --deny warnings --deny unmaintained --deny unsound --deny yanked --ignore RUSTSEC-2020-0016 --ignore RUSTSEC-2020-0036
# RUSTSEC-2019-0036: a dependency failure (pulled from proc-maps) has type confusion vulnerability
cargo audit --deny warnings --deny unmaintained --deny unsound --deny yanked --ignore RUSTSEC-2020-0016 --ignore RUSTSEC-2020-0036 --ignore RUSTSEC-2019-0036
cargo-license -j > data/licenses.json
cargo build --release --locked
cargo clippy --release -- -D warnings
Expand Down