-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (39 loc) · 1.27 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "utxo-observer"
version = "0.1.0"
edition = "2021"
[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 = ["full"] }
minreq = { version = "2.6.0", features = ["json-using-serde"] }
tokio-stream = { version = "0.1.11", features = ["sync"] }
futures-util = "0.3"
petgraph = { version = "0.6.2", features = ["serde-1"] }
base64 = "0.13.1"
uuid = { version = "1", features = ["v4"] }
async-trait = "0.1.58"
bitcoin-pool-identification = "0.3.4"
zmq = "0.10.0"
bitcoin = "0.32.5"
reqwest = "0.12.12"
actix-web = "4.0"
actix-files = "0.6"
diesel = { version = "2", features = ["postgres", "r2d2", "chrono"] }
chrono = { version = "0.4", features = ["serde"] }
nostr-sdk = { version = "0.39", features = ["all-nips"] }
# build libpq and openssl as part of the build process
# uncomment these lines if you run into setup issues
# pq-sys = { version = "0.6", features = ["bundled"] }
# openssl-sys = { version = "0.9.100", features = ["vendored"] }
dotenvy = "0.15"
once_cell = "1.20.3"
[features]
strict = [] # Treat warnings as a build error.