-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.09 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
[package]
name = "keyserver"
version = "0.2.1"
authors = ["Harry Barber <harrybarber@protonmail.com>"]
edition = "2018"
description = "Cash:web Keyserver is a Bitcoin public key and metadata registry"
[features]
monitoring = ["prometheus", "prometheus-static-metric"]
[dependencies]
async_zmq = "0.3.2"
base64 = "0.12.3"
bitcoincash-addr = "0.5.2"
bytes = "0.5.6"
cashweb = "0.1.0-alpha.6"
clap = { version = "2.33.1", features = ["yaml"] }
config = "0.10.1"
dashmap = "3.11.10"
dirs = "3.0.1"
futures = "0.3.5"
hex = "0.4.2"
http = "0.2.1"
hyper = "0.13.7"
hyper-tls = "0.4.3"
lazy_static = "1.4.0"
prost = "0.6.1"
prometheus = { version = "0.9.0", optional = true }
prometheus-static-metric = { version = "0.2.0", optional = true }
ring = "0.16.15"
rocksdb = "0.14.0"
serde = { version = "1.0.114", features = ["derive"] }
subtle = "2.2.3"
thiserror = "1.0.20"
tracing = "0.1.18"
tracing-subscriber = "0.2.10"
tokio = { version = "0.2.22", features = ["blocking", "macros", "rt-core", "rt-threaded", "sync", "time"] }
tower-service = "0.3.0"
url = "2.1.1"
warp = "0.2.4"
[build-dependencies]
prost-build = "0.6.1"