-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
81 lines (69 loc) · 1.64 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
70
71
72
73
74
75
76
77
78
79
80
81
[package]
authors = ["Joe Bowman <[email protected]>", "Parth Desai <[email protected]>"]
edition = "2018"
name = "quantum-tunnel"
version = "0.1.0"
[[bin]]
name = "quantum-tunnel"
test = false
bench = false
path = "src/bin/quantum_tunnel/main.rs"
[dependencies]
futures = "0.3.5"
futures_codec = "0.4.1"
gumdrop = "0.7"
simple-error = "0.1.9"
sp-core = "2.0.1"
sp-finality-grandpa = "2.0.1"
sp-runtime = "2.0.1"
sp-keyring = "2.0.1"
parity-scale-codec = "1.3.1"
thiserror = "1"
url = "1.7.2"
log = "0.4.8"
serde_json = "1.0"
hyper = "0.13"
bytes = "0.5.5"
tiny-bip39 = "0.7.3"
tiny-hderive = "0.2.1"
crossbeam-channel = "0.4.2"
subtle-encoding = { version = "0.5.1", features = ["bech32-preview"] }
hex = "0.4.2"
parse_duration = "2.1.0"
regex = "1"
signature = "1.1.0"
cast = "0.1.0"
k256 = { version = "0.7.2", features = ["ecdsa", "sha256"] }
base64-serde = "0.5.1"
base64 = "0.12.3"
substrate-subxt = "0.13.0"
substrate-subxt-proc-macro = "0.13.0"
rand = "0.7.3"
[dependencies.abscissa_core]
version = "0.5.2"
[dependencies.tokio-tungstenite]
version = "0.10.1"
[dependencies.serde]
features = ["serde_derive"]
version = "1"
[dependencies.tendermint]
default-features = false
version = "0.17.1"
[dependencies.tendermint-rpc]
default-features = false
features = ["websocket-client"]
version = "0.17.1"
[dependencies.tendermint_light_client]
default-features = false
git = "https://github.com/ChorusOne/tendermint_light_client.git"
branch = "master"
version = "0.4.0"
[dependencies.tokio]
default_features = false
features = ["rt-core"]
version = "0.2"
[dev-dependencies]
once_cell = "1.2"
[dev-dependencies.abscissa_core]
features = ["testing"]
version = "0.5.2"