This repository has been archived by the owner on Mar 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCargo.toml
69 lines (67 loc) · 2.31 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "cnd"
version = "0.9.0"
authors = [ "CoBloX <hello@coblox.tech>" ]
edition = "2018"
description = "Reference implementation of a COMIT network daemon."
[dependencies]
anyhow = "1"
async-trait = "0.1"
atty = "0.2"
backoff = { version = "0.2.1", features = [ "tokio" ] }
base64 = "0.13.0"
bitcoin = { version = "0.25", features = [ "use-serde" ] }
comit = { path = "../comit" }
config = { version = "0.10", features = [ "toml" ], default-features = false }
conquer-once = "0.3.2"
data-encoding = "2.3"
derivative = "2"
diesel = { version = "1.4", features = [ "sqlite" ] }
diesel_migrations = "1.4.0"
directories-next = "2"
fs2 = "0.4.3"
futures = { version = "0.3", default-features = false }
futures-timer = "3.0"
get_if_addrs = "0.5"
hex = "0.4"
http-api-problem = { version = "0.15", features = [ "with_warp" ] }
ipnet = "2.3"
libp2p = { version = "0.29", default-features = false, features = [ "tcp-tokio", "yamux", "mplex", "dns", "noise" ] }
libp2p-tokio-socks5 = "0.4"
libsqlite3-sys = { version = ">=0.8.0, <0.13.0", features = [ "bundled" ] }
log = { version = "0.4", features = [ "serde" ] }
num = "0.3"
pem = "0.8"
rand = "0.8"
reqwest = { version = "0.10", default-features = false, features = [ "json", "native-tls-vendored" ] }
serde = { version = "1", features = [ "derive" ] }
serde_derive = "1.0"
serde_json = "1"
serdebug = "1"
siren = { version = "0.2.1", package = "siren-types" }
socket2 = "0.4"
structopt = "0.3"
strum = "0.20"
strum_macros = "0.20"
thiserror = "1"
time = "0.2.22"
tokio = { version = "0.2", features = [ "rt-threaded", "time", "macros", "sync" ] }
toml = "0.5"
tracing = { version = "0.1", features = [ "attributes" ] }
tracing-core = "0.1"
tracing-futures = { version = "0.2", features = [ "std-future", "futures-03" ] }
tracing-log = "0.1"
tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter" ] }
url = { version = "2", features = [ "serde" ] }
uuid = { version = "0.8", features = [ "serde", "v4" ] }
void = "1"
warp = { version = "0.2", default-features = false }
[dev-dependencies]
bitcoin = { version = "0.25", features = [ "rand" ] }
bitcoincore-rpc = "0.12.0"
comit = { path = "../comit", features = [ "test" ] }
proptest = "0.10.1"
regex = "1.4"
serde_urlencoded = "0.7"
spectral = { version = "0.6", default-features = false }
tempfile = "3.1.0"