-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (67 loc) · 1.48 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
[workspace]
members = [
"crates/quanta-artifact",
"crates/quanta-crypto",
"crates/quanta-database",
"crates/quanta-http",
"crates/quanta-main",
"crates/quanta-network",
"crates/quanta-swap",
]
[workspace.dependencies]
actix-multipart = "0.5.0"
actix-web = "4.2.1"
async-std = "1.12.0"
async-trait = "0.1.68"
base64ct = { version = "1.6.0", features = ["alloc"] }
bincode = "1.3.3"
blake3 = "1.4.0"
bs58 = "0.5.0"
byteorder = "1.4.3"
digest = "0.10.7"
either = "1.8.1"
fnv = "1.0.7"
futures = "0.3.28"
hex = "0.4.3"
home = "0.5.5"
mime = "0.3.17"
libflate = "1.4.0"
libp2p = { version = "0.51.3", features = ["async-std",
"autonat",
"dcutr",
"dns",
"identify",
"kad",
"gossipsub",
"macros",
"metrics",
"mdns",
"mplex",
"noise",
"ping",
"relay",
"request-response",
"tcp",
"yamux",
"serde",
"quic",
] }
log = "0.4.19"
pretty_env_logger = "0.5.0"
prost = "0.11.9"
prost-build = "0.11.9"
quanta-artifact = { path = "crates/quanta-artifact" }
quanta-crypto = { path = "crates/quanta-crypto" }
quanta-database = { path = "crates/quanta-database" }
quanta-http = { path = "crates/quanta-http" }
quanta-network = { path = "crates/quanta-network" }
quanta-swap = { path = "crates/quanta-swap" }
rand = "0.8.5"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.97"
sha2 = "0.10.7"
sha3 = "0.10.8"
sled = "0.34.7"
thiserror = "1.0.40"
tokio = { version = "1.28.2", features = ["full"] }
void = "1.0.2"