-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 849 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 849 Bytes
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
[package]
name = "hypernode"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "hypernode"
path = "src/bin/main.rs"
[dependencies]
sol-bindings= { workspace = true }
bitcoin-light-client-core = { workspace = true }
bitcoin-data-engine = { workspace = true }
rift-core = { workspace = true }
rift-sdk = { workspace = true }
rift-indexer = { workspace = true }
checkpoint-downloader = { workspace = true }
bitcoincore-rpc-async = { workspace = true }
accumulators = { workspace = true }
tokio = { workspace = true }
alloy = { workspace = true }
eyre = { workspace = true }
clap = { workspace = true }
futures = { workspace = true }
hex = { workspace = true }
bitcoin = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
backoff.workspace = true
thiserror.workspace = true
itertools = { workspace = true }