-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (32 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
40 lines (32 loc) · 786 Bytes
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
[workspace]
members = [
"crates/catalyst-core",
"crates/catalyst-crypto",
"crates/catalyst-consensus",
"crates/catalyst-network",
"crates/catalyst-config",
"crates/catalyst-utils",
]
resolver = "2"
[workspace.dependencies]
# Core async runtime
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Cryptography
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
sha2 = "0.10"
# Networking
libp2p = { version = "0.53", features = ["kad", "request-response"] }
# Utilities
hex = "0.4"
uuid = { version = "1.0", features = ["v4"] }
tracing = "0.1"
# Configuration
toml = "0.8"