-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (52 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
61 lines (52 loc) · 1.48 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
[workspace]
resolver = "2"
members = [
"crates/solidus-crypto",
"crates/solidus-txns",
"crates/solidus-state",
"crates/solidus-consensus",
"crates/solidus-p2p",
"crates/solidus-rpc",
"crates/solidus-node",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/solidus-network/solidus"
[workspace.dependencies]
# Internal crates
solidus-crypto = { path = "crates/solidus-crypto" }
solidus-txns = { path = "crates/solidus-txns" }
solidus-state = { path = "crates/solidus-state" }
solidus-consensus = { path = "crates/solidus-consensus" }
solidus-p2p = { path = "crates/solidus-p2p" }
solidus-rpc = { path = "crates/solidus-rpc" }
# Async runtime
tokio = { version = "1", features = ["full"] }
# Cryptography
ed25519-dalek = { version = "2", features = ["rand_core"] }
blake3 = "1"
rand = "0.8"
blst = "0.3"
sha2 = "0.10"
# Storage
rocksdb = "0.22"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bincode = "1"
# RPC
jsonrpsee = { version = "0.24", features = ["server"] }
# Networking
libp2p = { version = "0.54", features = ["tcp", "noise", "yamux", "gossipsub", "request-response", "tokio", "macros", "ed25519"] }
async-trait = "0.1"
bitvec = { version = "1", features = ["serde"] }
# Utilities
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
bs58 = "0.5"
hex = "0.4"
clap = { version = "4", features = ["derive"] }
toml = "0.8"