Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/cargo-license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: EmbarkStudios/cargo-deny-action@34899fc7ba81ca6268d5947a7a16b4649013fea1 # v2.0.11
- uses: EmbarkStudios/cargo-deny-action@76cd80eb775d7bbbd2d80292136d74d39e1b4918 # v2.0.11
with:
manifest-path: "./core/Cargo.toml"
command: check
Expand Down
12 changes: 9 additions & 3 deletions core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ insta = "1.29.0"
itertools = "0.13.0"
jsonrpsee = { version = "0.24", default-features = false }
leb128 = "0.2.5"
lru = { version = "0.12.1", default-features = false }
lru = { version = "0.16.3", default-features = false }
mini-moka = "0.10.0"
num_cpus = "1.13"
num_enum = "0.7.2"
Expand Down
4 changes: 4 additions & 0 deletions core/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ feature-depth = 1

[advisories]
ignore = [
# Unsoundness in lru <0.16.3. Waiting for:
# * aws-sdk-s3 to upgrade (https://github.com/smithy-lang/smithy-rs/pull/4470)
# * alloy-provider to upgrade (https://github.com/alloy-rs/alloy/pull/3460)
"RUSTSEC-2026-0002",
"RUSTSEC-2024-0375", # atty dependency being unmaintained, dependency of clap and criterion, we would need to update to newer major of dependencies
"RUSTSEC-2020-0168", # mach dependency being unmaintained, dependency in api server, we should consider moving to mach2 fork
"RUSTSEC-2024-0370", # `cs_derive` needs to be updated to not rely on `proc-macro-error`
Expand Down
Loading