-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
71 lines (64 loc) · 1.69 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
[package]
name = "arpa-node"
authors = ["kafeikui"]
description = "This crate provides a set of tools on the node side of the ARPA BLS Threshold Signature Scheme (BLS-TSS) Network, including Threshold-BLS based on-chain randomness service(Randcast)."
version.workspace = true
edition.workspace = true
license.workspace = true
documentation.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
exclude.workspace = true
[[bin]]
name = "node-client"
path = "src/node_client.rs"
[[bin]]
name = "node-shell"
path = "src/node_shell.rs"
[[bin]]
name = "node-config-checker"
path = "src/node_config_checker.rs"
[dependencies]
arpa-log.workspace = true
arpa-core.workspace = true
arpa-dal.workspace = true
arpa-sqlite-db.workspace = true
arpa-contract-client.workspace = true
dkg-core.workspace = true
threshold-bls.workspace = true
gumdrop = "0.7.0"
rand = "0.8"
bincode = "1.2.1"
glob = "0.3.0"
serde = "1.0.106"
thiserror = "1.0.15"
serde_json = "1.0.53"
hex = "0.4.2"
anyhow = "1.0.31"
futures = "0.3.5"
async-trait = "0.1.35"
tokio = { version = "1.37.0", features = ["full"] }
rustc-hex = "2.1.0"
tonic = "0.11"
tonic-health = "0.11"
prost = "0.12"
serde_yaml = "0.8"
tokio-retry = "0.3"
log = "0.4"
log4rs = "1.2.0"
log-mdc = "0.1.0"
chrono = "0.4"
structopt = "0.3"
ethers = { workspace = true, features = ["abigen", "rustls", "ws"] }
uuid = { version = "1.2.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
tower = "0.4"
hyper = "0.14"
reedline-repl-rs = { version = "1.0.6", features = ["async"] }
actix-web = "4"
check-latest = { version = "1.0.2", default-features = false, features = [
"async",
] }
[build-dependencies]
tonic-build = "0.11"
prost-build = "0.12"