Update deny, rust-src component

This commit is contained in:
Luke Parker 2025-02-04 08:12:02 -05:00
parent 653b0e0bbc
commit dd95494d9c
No known key found for this signature in database
5 changed files with 6 additions and 6 deletions
.github/workflows
deny.toml
orchestration

View file

@ -21,4 +21,4 @@ jobs:
run: cargo install --locked cargo-deny
- name: Run cargo deny
run: cargo deny -L error --all-features check
run: cargo deny -L error --all-features check --hide-inclusion-graph

View file

@ -26,7 +26,7 @@ jobs:
uses: ./.github/actions/build-dependencies
- name: Install nightly rust
run: rustup toolchain install ${{ steps.nightly.outputs.version }} --profile minimal -t wasm32-unknown-unknown -c clippy
run: rustup toolchain install ${{ steps.nightly.outputs.version }} --profile minimal -t wasm32-unknown-unknown -c rust-src -c clippy
- name: Run Clippy
run: cargo +${{ steps.nightly.outputs.version }} clippy --all-features --all-targets -- -D warnings -A clippy::items_after_test_module
@ -55,7 +55,7 @@ jobs:
run: cargo install --locked cargo-deny
- name: Run cargo deny
run: cargo deny -L error --all-features check
run: cargo deny -L error --all-features check --hide-inclusion-graph
fmt:
runs-on: ubuntu-latest

View file

@ -7,8 +7,6 @@ db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
ignore = [
"RUSTSEC-2020-0168", # mach is unmaintained
"RUSTSEC-2021-0139", # https://github.com/serai-dex/serai/228
"RUSTSEC-2022-0061", # https://github.com/serai-dex/serai/227
"RUSTSEC-2024-0370", # proc-macro-error is unmaintained
"RUSTSEC-2024-0384", # instant is unmaintained
@ -123,7 +121,7 @@ wildcards = "warn"
highlight = "all"
deny = [
{ name = "serde_derive", version = ">=1.0.172, <1.0.185" },
{ name = "hashbrown", version = ">=0.15" },
{ name = "hashbrown", version = "=0.15.0" },
]
[sources]

View file

@ -11,6 +11,7 @@ RUN rm -rf /etc/apt/sources.list.d/debian.sources && \
RUN apt update && apt upgrade && apt install clang -y
# Add the wasm toolchain
RUN rustup component add rust-src
RUN rustup target add wasm32-unknown-unknown
FROM deterministic

View file

@ -162,6 +162,7 @@ RUN apt install -y pkg-config clang
RUN apt install -y make protobuf-compiler
# Add the wasm toolchain
RUN rustup component add rust-src
RUN rustup target add wasm32-unknown-unknown
{prelude}