-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (50 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
64 lines (50 loc) · 1.04 KB
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
[workspace]
resolver = "2"
members = [
# bin
"bin/void_caster",
# core
"crates/types",
"crates/core",
# network
"crates/network/p2p",
# tests
"crates/test-utils",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
# void caster
vc-types = { path = "crates/types" }
vc-core = { path = "crates/core" }
vc-p2p = { path = "crates/network/p2p" }
# tests related
vc-test-utils = { path = "crates/test-utils" }
# consensus
void-proto = { git = "https://github.com/sajeevanjspy/void-proto.git" }
# tendermint
# network
libp2p = { version = "0.56.0", default-features = false }
# runtime (async)
tokio = { version = "1.45.0", default-features = false }
futures = "0.3.3"
# tracing
tracing = "0.1.40"
tracing-subscriber = "0.3.19"
# serde
serde = { version = "1.0.2", features = ["derive"] }
serde_json = "1.0.14"
serde_yaml = "0.9.3"
# crypto
ed25519-dalek = "2.1.0"
# misc
prost = "0.14"
clap = "4.5.4"
bytes = "1.1"
rand = "0.9.0"
base64 = "0.22.0"
thiserror = "2.0.10"
eyre = "0.6.12"
sha2 = "0.10.9"
sha3 = "0.10.8"