-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
27 lines (25 loc) · 893 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
[package]
name = "bitcoin-exporter"
description = "Expose bitcoin core metrics in prometheus format"
version = "0.5.4"
edition = "2021"
[dependencies]
anyhow = "1.0.51"
argh = "0.1.7"
bitcoincore-rpc = "0.14.0"
bitcoincore-rpc-json = "0.14.0"
lazy_static = "1.4.0"
prometheus = "0.13.0"
hyper = { version = "^0.14", features = ["server", "http1", "tcp"] }
tokio = { version = "^1.0", features = ["macros", "rt-multi-thread"] }
env_logger = "0.9.0"
log = "0.4.14"
bitcoin = "0.27.1"
serde = "1.0.132"
serde_yaml = "0.8.23"
thiserror = "1.0.30"
[patch.crates-io]
bitcoincore-rpc = { git = "https://github.com/eburghar/rust-bitcoincore-rpc.git", branch = "master" }
bitcoincore-rpc-json = { git = "https://github.com/eburghar/rust-bitcoincore-rpc.git", branch = "master" }
# bitcoincore-rpc = { path = "../bitcoincore-rpc/client" }
# bitcoincore-rpc-json = { path = "../bitcoincore-rpc/json" }