forked from SaitoTech/saito-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (55 loc) · 1.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
[package]
name = "saito_rust"
version = "0.1.0"
authors = [
"Clayton Rabenda <[email protected]>",
"Stephen Peterkins <[email protected]>",
"David Lancashire <[email protected]>"
]
edition = "2021"
default-run = "saito_rust"
[[bin]]
name = "saitocli"
path = "src/bin/saitocli.rs"
[dependencies]
aes = "0.7.5"
ahash = "0.7.6"
async-recursion = "0.3.2"
base58 = "0.2.0"
bigint = "4.4.3"
bincode = "1.3"
blake3 = { version = "1.2.0", features = ["rayon"] }
block-modes = "0.8.1"
chrono = "0.4"
config = "0.11"
clap = "2.33.3"
futures = { version = "0.3", default-features = false }
hex = "0.4.3"
lazy_static = "1.4.0"
log = "0.4.14"
macros = { path = "macros" }
merkle = "1.11.0"
rand = "0.8.4"
rayon = "1.5"
reqwest = "0.11"
ring = "0.16.20"
rpassword = "5.0"
serde = { version = "1.0", features = ["derive"] }
serde-aux = "3"
serde_bytes = "0.11"
serde_json = "1.0.69"
serde_with = "1.11.0"
secp256k1 = { version = "0.20.3", features = ["global-context", "serde"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1.8" }
tokio-tungstenite = { version = "0.15.0" }
tracing = "0.1"
tracing-subscriber = "0.3"
url = { version = "2.2.2" }
uuid = { version = "0.8", features = ["serde", "v4"] }
warp = "0.3.1"
[dev-dependencies]
criterion = "0.3"
ctor = "0.1.21"
env_logger = "0.9.0"
serial_test = "0.5"