-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (25 loc) · 861 Bytes
/
Cargo.toml
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
[package]
name = "fork-observer"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitcoincore-rpc = "0.19.0"
warp = "0.3"
toml = "0.5"
serde = "1.0.127"
serde_json = "1"
log = { version = "0.4.17" }
env_logger = { version = "0.9.0" }
hex = { version = "0.4" }
rusqlite = { version = "0.27.0", features = ["bundled"] }
tokio = { version = "1.35", features = [ "rt-multi-thread", "time", "sync", "macros" ] }
minreq = { version = "2.6.0", features = ["json-using-serde", "https"] }
tokio-stream = { version = "0.1.11", features = ["sync"] }
futures-util = "0.3"
petgraph = { version = "0.6.2", features = ["serde-1"] }
base64 = "0.13.1"
async-trait = "0.1.58"
bitcoin-pool-identification = "0.3.4"
[features]
strict = [] # Treat warnings as a build error.