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: 0 additions & 2 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
[advisories]
# rustls-webpki 0.101.7 is locked by tonic 0.9; fix requires tonic 0.11+ (prost 0.11 -> 0.12).
# RUSTSEC-2025-0055: tracing-subscriber ^0.2 log poisoning via ANSI escapes
# Dep chain: tycho-simulation <- revm <- ark-bn254 <- ark-r1cs-std <- ark-relations <- tracing-subscriber ^0.2
# We need ark to update their dependencies to fix this.
ignore = [
"RUSTSEC-2026-0104",
"RUSTSEC-2025-0055",
]
100 changes: 54 additions & 46 deletions Cargo.lock

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

14 changes: 13 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,19 @@ alloy = { version = "1", features = [
"rpc-types-eth",
] }
# HTTP
actix-web = "4"
# Default features minus "http2": that feature is the only thing pulling h2 ^0.3, which has no
# patch for RUSTSEC-2026-0258. The server binds plain TCP with no TLS, so HTTP/2 was only ever
# reachable via h2c prior knowledge. Re-enable once actix-http moves to h2 0.4.
actix-web = { version = "4", default-features = false, features = [
"macros",
"compress-brotli",
"compress-gzip",
"compress-zstd",
"cookies",
"unicode",
"compat",
"ws",
] }
reqwest = { version = "0.12", features = ["json"] }

# Async
Expand Down
Loading