Skip to content

Commit

Permalink
cargo vet regenerate (#190)
Browse files Browse the repository at this point in the history
Alternative to #189.

The changes here are the result of running `cargo vet regenerate
exemptions && cargo vet regenerate imports`, as @repi shows
[here](#189 (comment)).
  • Loading branch information
fornwall authored Feb 12, 2024
1 parent bd4b519 commit 5ac4e54
Show file tree
Hide file tree
Showing 4 changed files with 805 additions and 566 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,21 +74,20 @@ jobs:
name: Vet Dependencies
runs-on: ubuntu-20.04-16core
env:
# there is no published release for v0.7 yet, build from git revision
CARGO_VET_REVISION: 8c8b6d7a5237544c613de616a031586587f49a42
CARGO_VET_VERSION: 0.9.1
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v3
with:
path: ${{ runner.tool_cache }}/cargo-vet
key: cargo-vet-bin-${{ env.CARGO_VET_REVISION }}
key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}
- name: Add the tool cache directory to the search path
run: echo "${{ runner.tool_cache }}/cargo-vet/bin" >> $GITHUB_PATH
- name: Ensure that the tool cache is populated with the cargo-vet binary
# build from source, as are not published binaries yet :(
# tracked in https://github.com/mozilla/cargo-vet/issues/484
run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --git https://github.com/mozilla/cargo-vet.git --rev ${{ env.CARGO_VET_REVISION }} cargo-vet
run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet
- name: Invoke cargo-vet
run: |
cargo vet --locked
Expand Down
4 changes: 2 additions & 2 deletions supply-chain/audits.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ end = "2024-06-08"

[[trusted.bytes]]
criteria = "safe-to-deploy"
user-id = 6741
user-id = 6741 # Alice Ryhl (Darksonn)
start = "2021-01-11"
end = "2024-06-08"

Expand Down Expand Up @@ -131,7 +131,7 @@ end = "2024-06-08"

[[trusted.num_cpus]]
criteria = "safe-to-deploy"
user-id = 359 # Sean McArthur (seanmonstar)
user-id = 359
start = "2019-06-10"
end = "2024-06-08"

Expand Down
Loading

0 comments on commit 5ac4e54

Please sign in to comment.