This repository has been archived by the owner on Sep 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
68 lines (63 loc) · 1.67 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
[package]
name = "nectar"
version = "0.1.0"
authors = ["CoBloX Team <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1"
async-trait = "0.1"
bitcoin = { version = "0.23", features = ["rand", "use-serde"] }
chrono = "0.4"
clarity = "0.1"
comit = { git = "https://github.com/comit-network/comit-rs/", package = "comit", rev = "76854090bb542ab55c5649c98ad1bc887bf5c764" }
config = "0.10"
conquer-once = "0.2"
csv = "1.1"
derivative = "2.1"
directories = "2.0"
ethabi = "2.0"
ethereum-types = "0.9"
futures = "0.3"
futures-timer = "3.0"
hex = "0.4"
libp2p = { version = "0.24", default-features = false, features = ["tcp-tokio", "secio", "yamux", "mplex", "dns"] }
log = "0.4"
num = "0.3"
num256 = "0.2"
pem = "0.8"
reqwest = { version = "0.10", default-features = false, features = ["json", "native-tls"] }
serde = { version = "1", features = ["derive"] }
serde-hex = "0.1"
serde_cbor = "0.11"
serde_json = "1.0"
sled = "0.32"
spectral = "0.6"
structopt = "0.3"
strum = "0.18"
strum_macros = "0.18"
thiserror = "1.0"
time = { version = "0.2", features = ["serde"] }
tokio = { version = "0.2", features = ["macros", "time"] }
toml = "0.5"
tracing = "0.1"
tracing-log = "0.1"
tracing-subscriber = "0.2"
url = { version = "2", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
wagyu-ethereum = "0.6"
wagyu-model = "0.6"
[dependencies.rand]
default-features = false
version = "0.6"
[dev-dependencies]
base64 = "0.12"
proptest = "0.10"
quickcheck = "0.9"
quickcheck_async = "0.1"
tempdir = "0.3"
testcontainers = "0.9"
[features]
default = ["test-docker"]
# "test-docker" feature is related to test code
# if it's enabled then tests needing docker will be ran
test-docker = []