-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
23 lines (21 loc) · 1.06 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
[package]
name = "gas_calibration"
version = "0.1.0"
edition = "2021"
[workspace]
[dependencies]
base64 = "0.13"
bs58 = { version = "=0.4", features = ["check"] }
clap = { version = "4.0.23", features = ["derive"] }
nnls = "0.3.0"
rayon = "1.5.3"
ndarray = { version="0.15", features = ["approx-0_5"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
pbr = { git = "https://github.com/a8m/pb" }
massa-sc-runtime = { git = "https://github.com/massalabs/massa-sc-runtime", branch = "main", features = ["gas_calibration"] }
massa-models = { git = "https://github.com/massalabs/massa", package = "massa_models", branch = "testnet_25" }
massa-hash = { git = "https://github.com/massalabs/massa", package = "massa_hash", branch = "testnet_25" }
massa-signature = { git = "https://github.com/massalabs/massa", package = "massa_signature", branch = "testnet_25" }
massa-execution-worker = { git = "https://github.com/massalabs/massa", package = "massa_execution_worker", branch = "testnet_25", features = ["gas_calibration"] }
rand = "0.8.5"
which = "4.4.0"