This repository was archived by the owner on Feb 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.26 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
[package]
name = "benchmark_client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
tokio-ci = ["tokio-executor"]
full-ci = ["async-std-executor"]
# for symmetry's sake
channel-async-std = []
channel-tokio = []
tokio-executor = [
"tokio",
"hotshot-centralized-server/tokio-executor",
"async-compatibility-layer/tokio-executor",
"hotshot-types/tokio-executor",
]
async-std-executor = [
"async-std",
"hotshot-centralized-server/async-std-executor",
"async-compatibility-layer/async-std-executor",
"hotshot-types/async-std-executor",
]
[dependencies]
async-std = { version = "1.12.0", optional = true }
async-compatibility-layer = { git = "https://github.com/EspressoSystems/async-compatibility-layer.git", tag = "1.2.0" }
tokio = { version = "1", optional = true }
clap = { version = "4.3", features = ["derive", "env"] }
futures = "0.3.28"
hotshot-centralized-server = { path = ".." }
hotshot-utils = { path = "../../utils" }
hotshot-types = { path = "../../types" }
tracing = "0.1.37"
ethereum-types = { version = "0.14.1", features = ["impl-serde"] }
bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "atomic", "serde"] }