File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2020 steps :
2121 - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222
23- - run : cargo +nightly-2025-04-01 fmt --check --manifest-path indexer/Cargo.toml
23+ - run : cargo +nightly-2026-01-07 fmt --check --manifest-path indexer/Cargo.toml
2424
2525 udeps :
2626 name : Check unused dependencies
3030 steps :
3131 - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3232
33- - run : cargo +nightly-2025-04-01 udeps --manifest-path indexer/Cargo.toml
33+ - run : cargo +nightly-2026-01-07 udeps --manifest-path indexer/Cargo.toml
3434
3535 deny-bans-licenses-sources :
3636 name : Cargo deny (bans, licenses, sources)
Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ ignore = [
9090 " RUSTSEC-2025-0134" ,
9191 # `bincode` is unmaintained
9292 " RUSTSEC-2025-0141" ,
93+ # `IterMut` violates Stacked Borrows by invalidating internal pointer (FIX ASAP)
94+ " RUSTSEC-2026-0002" ,
9395]
9496# If this is true, then cargo deny will use the git executable to fetch advisory database.
9597# If this is false, then it uses a built-in git library.
@@ -117,6 +119,7 @@ allow = [
117119 " Zlib" ,
118120 " OpenSSL" ,
119121 " Apache-2.0 WITH LLVM-exception" ,
122+ " CDDL-1.0" ,
120123]
121124# The confidence threshold for detecting a license from license text.
122125# The higher the value, the more closely the license text must be to the
You can’t perform that action at this time.
0 commit comments