-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 768 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 768 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
33
[package]
name = "rust_bitcoin_node"
version = "0.1.0"
authors = ["Jake Rawsthorne <jake@jakerawsthorne.co.uk>"]
edition = "2018"
[features]
test-utils = []
[dependencies]
bitcoin = { git = "https://github.com/jrawsthorne/rust-bitcoin", branch = "master", features = [
"bitcoinconsensus",
"rand",
] }
log = "0.4.20"
env_logger = "0.10.1"
bytes = "1.5.0"
rocksdb = "0.21.0"
bitcoinconsensus = { git = "https://github.com/jrawsthorne/rust-bitcoinconsensus", branch = "0.21" }
regex = "1.10.2"
bitflags = "2.4.1"
maplit = "1.0.2"
parking_lot = "0.12.1"
rayon = "1.8.0"
thiserror = "1.0.53"
murmur3 = "0.5.2"
crossbeam-channel = "0.5.10"
anyhow = "1.0.78"
rand = "0.8.5"
tokio = { version = "1.35.1", features = ["full"] }
[dev-dependencies]
tempfile = "3.9.0"