-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
36 lines (33 loc) · 1.02 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
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "gatling"
version = "0.1.4"
edition = "2021"
license = "MIT"
authors = ["Exploration Team @ StarkWare <@keep-starknet-strange>"]
repository = "https://github.com/keep-starknet-strange/gomu-gomu-no-gatling"
categories = ["command-line-interface", "command-line-utilities"]
keywords = ["starknet", "cairo"]
description = "Gomu Gomu No Gatling is a blazing fast tool to benchmark Starknet sequencers."
[profile.dev.package.backtrace]
opt-level = 3
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
color-eyre = "0.6.3"
config = "0.14.0"
crossbeam-queue = "0.3.11"
dotenvy = "0.15.7"
futures = "0.3.31"
goose = "0.17.2"
lazy_static = "1.5.0"
rand = { version = "0.8.5", features = ["rand_chacha"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.128", features = ["preserve_order"] }
starknet = "0.12.0"
sysinfo = "0.30.12"
tokio = { version = "1.40", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.2"
[features]
default = []
with_sps = []