Skip to content

Commit b71a4e3

Browse files
authored
chore: update strata-common to rc16 and moho (#75)
* chore: update strata-common to rc16 and moho * chore: update rustls-webpki and whitelisted 0098/99
1 parent a5dcf33 commit b71a4e3

File tree

3 files changed

+58
-54
lines changed

3 files changed

+58
-54
lines changed

.cargo/audit.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ ignore = [
1717
"RUSTSEC-2026-0048",
1818

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

2529
# RUSTSEC-2026-0002 (lru 0.12.5) — IterMut unsound (Stacked Borrows violation)
2630
# Pulled in via sp1-prover -> sp1-sdk.

Cargo.lock

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -87,28 +87,28 @@ strata-test-utils-btc = { path = "crates/test-utils/btc" }
8787
strata-test-utils-btcio = { path = "crates/test-utils/btcio" }
8888
strata-test-utils-checkpoint = { path = "crates/test-utils/checkpoint" }
8989

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

9696
# Dependencies from alpenlabs/strata-common
97-
strata-btc-types = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
97+
strata-btc-types = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
9898
strata-codec = { git = "https://github.com/alpenlabs/strata-common", features = [
9999
"derive",
100-
], tag = "v0.1.0-alpha-rc15" }
101-
strata-codec-utils = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
102-
strata-crypto = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
103-
strata-identifiers = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
104-
strata-l1-envelope-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
105-
strata-l1-txfmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
106-
strata-merkle = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
107-
strata-msg-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
108-
strata-predicate = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
109-
strata-service = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
110-
strata-ssz-tests = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
111-
strata-tasks = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc15" }
100+
], tag = "v0.1.0-alpha-rc16" }
101+
strata-codec-utils = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
102+
strata-crypto = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
103+
strata-identifiers = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
104+
strata-l1-envelope-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
105+
strata-l1-txfmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
106+
strata-merkle = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
107+
strata-msg-fmt = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
108+
strata-predicate = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
109+
strata-service = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
110+
strata-ssz-tests = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
111+
strata-tasks = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
112112

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

0 commit comments

Comments
 (0)