-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (21 loc) · 830 Bytes
/
Copy pathCargo.toml
File metadata and controls
22 lines (21 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "rust-massa-web3"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
dotenvy = "0.15.7"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["full"] }
tonic = "0.12"
massa-proto-rs = { git = "https://github.com/massalabs/massa-proto-rs", branch = "main", features = [
"tonic",
] }
massa_signature = { git = "https://github.com/massalabs/massa.git", branch = "main_2_6", package = "massa_signature" }
massa_models = { git = "https://github.com/massalabs/massa.git", branch = "main_2_6", package = "massa_models" }
massa_serialization = { git = "https://github.com/massalabs/massa.git", branch = "main_2_6", package = "massa_serialization" }
alloy-primitives = "1.0.0"
byteorder = "1.5.0"
rand = "0.9.1"
tokio-stream = "0.1.17"
serde = { version = "1.0.219", features = ["derive"] }