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
6 changes: 5 additions & 1 deletion .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ ignore = [
"RUSTSEC-2026-0048",

# RUSTSEC-2026-0049 (rustls-webpki 0.101.7) — CRL matching logic error
# rustls-webpki 0.103.9 was bumped to 0.103.10 via cargo update.
# RUSTSEC-2026-0098 (rustls-webpki 0.101.7) — Name constraints for URI names incorrectly accepted
# RUSTSEC-2026-0099 (rustls-webpki 0.101.7) — Name constraints accepted for wildcard certificates
# rustls-webpki 0.103.10 was bumped to 0.103.12 via cargo update.
# The 0.101.7 instance is pulled in via bitreq -> bitcoind-async-client (strata-bridge git dep).
# Upgrade blocked until the strata-bridge dependency updates its rustls/webpki stack.
"RUSTSEC-2026-0049",
"RUSTSEC-2026-0098",
"RUSTSEC-2026-0099",

# RUSTSEC-2026-0002 (lru 0.12.5) — IterMut unsound (Stacked Borrows violation)
# Pulled in via sp1-prover -> sp1-sdk.
Expand Down
70 changes: 35 additions & 35 deletions Cargo.lock

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

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,28 +87,28 @@ strata-test-utils-btc = { path = "crates/test-utils/btc" }
strata-test-utils-btcio = { path = "crates/test-utils/btcio" }
strata-test-utils-checkpoint = { path = "crates/test-utils/checkpoint" }

# Dependencies from alpenlabs/moho (28ef75c = strata-common rc15)
moho-recursive-proof = { git = "https://github.com/alpenlabs/moho", rev = "19c4099ffea81d754086bcb8ba324ad360148cfe" }
moho-runtime-impl = { git = "https://github.com/alpenlabs/moho", rev = "19c4099ffea81d754086bcb8ba324ad360148cfe" }
moho-runtime-interface = { git = "https://github.com/alpenlabs/moho", rev = "19c4099ffea81d754086bcb8ba324ad360148cfe" }
moho-types = { git = "https://github.com/alpenlabs/moho", rev = "19c4099ffea81d754086bcb8ba324ad360148cfe" }
# Dependencies from alpenlabs/moho (moho's b399fdb depends on strata-common rc16)
moho-recursive-proof = { git = "https://github.com/alpenlabs/moho", rev = "b399fdbf3b5108f4b0d0559dc1e74b9e53858744" }
moho-runtime-impl = { git = "https://github.com/alpenlabs/moho", rev = "b399fdbf3b5108f4b0d0559dc1e74b9e53858744" }
moho-runtime-interface = { git = "https://github.com/alpenlabs/moho", rev = "b399fdbf3b5108f4b0d0559dc1e74b9e53858744" }
moho-types = { git = "https://github.com/alpenlabs/moho", rev = "b399fdbf3b5108f4b0d0559dc1e74b9e53858744" }

# Dependencies from alpenlabs/strata-common
strata-btc-types = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-btc-types = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-codec = { git = "https://github.com/alpenlabs/strata-common", features = [
"derive",
], tag = "v0.1.0-alpha-rc15" }
strata-codec-utils = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-crypto = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-identifiers = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-l1-envelope-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-l1-txfmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-merkle = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-msg-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-predicate = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-service = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-ssz-tests = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
strata-tasks = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
], tag = "v0.1.0-alpha-rc16" }
strata-codec-utils = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-crypto = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-identifiers = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-l1-envelope-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-l1-txfmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-merkle = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-msg-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-predicate = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-service = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-ssz-tests = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
strata-tasks = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }

# dependencies from alpenlabs/ssz-gen
ssz = { git = "https://github.com/alpenlabs/ssz-gen", tag = "v0.15.0" }
Expand Down
Loading