-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (49 loc) · 2.22 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (49 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
members = [
"bin/dashboard",
"crates/bridge",
"crates/config",
"crates/network",
"crates/utils",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.2.0"
[workspace.dependencies]
# Internal
status-bridge = { path = "crates/bridge" }
status-config = { path = "crates/config" }
status-network = { path = "crates/network" }
status-utils = { path = "crates/utils" }
# alpen pinned to the rev referenced by the chosen strata-bridge revision,
# so the transitive `strata-primitives`/`Buf32` matches our direct pin.
alpen-reth-primitives = { git = "https://github.com/alpenlabs/alpen.git", rev = "2c6ae209dd5f2ed71e6f9f7b721ea7ab21190e10" }
strata-bridge-primitives = { git = "https://github.com/alpenlabs/strata-bridge.git", rev = "0ecec67b67db89f6b761ffeaa09af8e7ad864bb1" }
strata-bridge-rpc = { git = "https://github.com/alpenlabs/strata-bridge.git", features = [
"client",
], rev = "0ecec67b67db89f6b761ffeaa09af8e7ad864bb1" }
strata-primitives = { git = "https://github.com/alpenlabs/alpen.git", rev = "2c6ae209dd5f2ed71e6f9f7b721ea7ab21190e10" }
strata-tasks = { git = "https://github.com/alpenlabs/strata-common", tag = "v0.1.0-alpha-rc16" }
typed-sled = { git = "https://github.com/alpenlabs/typed-sled" }
# External
alloy-primitives = { version = "1.4.1", features = [ "serde" ] }
alloy-sol-types = { version = "1.4.1" }
anyhow = { version = "1" }
axum = { version = "0.8" }
bitcoin = { version = "0.32.8", features = [ "serde" ] }
hex = { version = "0.4" }
jsonrpsee = { version = "0.26", features = [ "http-client" ] }
reqwest = { version = "0.13.3", features = [ "json" ] }
serde = { version = "1", features = [ "derive" ] }
serde_json = { version = "1.0", default-features = false, features = [
"alloc",
"raw_value",
] }
sled = { version = "0.34" }
thiserror = { version = "1" }
tokio = { version = "1.52.3", features = [ "macros", "rt-multi-thread" ] }
toml = { version = "1.1.2" }
tower-http = { version = "0.6", features = [ "cors" ] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3.23", features = [ "env-filter" ] }