Skip to content
Draft
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
150 changes: 109 additions & 41 deletions Cargo.lock

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

17 changes: 14 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ members = [
"crates/operator-wallet",
"crates/wots",
"crates/memory_pprof",
"crates/p2p-wire",
"crates/p2p-types",

# binaries listed separately
"bin/secret-service",
Expand Down Expand Up @@ -63,6 +65,8 @@ btc-tracker = { path = "crates/btc-tracker" }
duty-tracker = { path = "crates/duty-tracker" }
operator-wallet = { version = "0.1.0", path = "crates/operator-wallet" }
prover-test-utils = { path = "crates/bridge-proof/test-utils" }
p2p-types = { path = "crates/p2p-types" }
p2p-wire = { path = "crates/p2p-wire" }
secret-service-client = { path = "crates/secret-service-client" }
secret-service-proto = { path = "crates/secret-service-proto" }
secret-service-server = { path = "crates/secret-service-server" }
Expand Down Expand Up @@ -94,9 +98,13 @@ strata-rpc-types = { git = "https://github.com/alpenlabs/alpen.git", tag = "v0.2
strata-state = { git = "https://github.com/alpenlabs/alpen.git", tag = "v0.2.0-rc4" }
strata-tasks = { git = "https://github.com/alpenlabs/alpen.git", tag = "v0.2.0-rc4" }

strata-p2p = { git = "https://github.com/alpenlabs/strata-p2p.git", tag = "v0.1.0" }
strata-p2p-types = { git = "https://github.com/alpenlabs/strata-p2p.git", tag = "v0.1.0" }
strata-p2p-wire = { git = "https://github.com/alpenlabs/strata-p2p.git", tag = "v0.1.0" }
strata-p2p = { git = "https://github.com/alpenlabs/strata-p2p.git", tag = "v0.3.0", features = [
# TODO(sistemd): BYOS (bring your own signer) is not enabled yet - open a ticket for this
"quic",
"request-response",
"gossipsub",
"kad",
], default-features = false }

zkaleido = { git = "https://github.com/alpenlabs/zkaleido", tag = "v0.1.0-alpha-rc11" }
zkaleido-native-adapter = { git = "https://github.com/alpenlabs/zkaleido", tag = "v0.1.0-alpha-rc11" }
Expand Down Expand Up @@ -159,6 +167,7 @@ libp2p = { version = "0.55.0", features = [
"yamux",
"identify",
] }
libp2p-identity = "0.2.10"
miniscript = "12.3.0"
musig2 = { version = "0.1.0", features = [
"serde",
Expand All @@ -170,6 +179,8 @@ opentelemetry_sdk = { version = "0.29.0", features = ["rt-tokio"] }
parking_lot = "0.12.3"
proptest = "1.6.0"
proptest-derive = "0.5.1"
prost = "0.13.4"
prost-build = "0.13.4"
quinn = "0.11.6"
rand = "0.8.5"
reqwest = { version = "0.12.12", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion bin/alpen-bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ strata-bridge-rpc.workspace = true
strata-bridge-stake-chain.workspace = true
strata-bridge-tx-graph.workspace = true
strata-p2p.workspace = true
strata-p2p-types.workspace = true
p2p-types.workspace = true
strata-primitives.workspace = true

strata-bridge-common.workspace = true
Expand Down
Loading
Loading