Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 2518e95

Browse files
authored
Add bench-exchange (#3826)
1 parent bc17edc commit 2518e95

File tree

7 files changed

+1580
-0
lines changed

7 files changed

+1580
-0
lines changed

Cargo.lock

Lines changed: 58 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[workspace]
22
members = [
33
".",
4+
"bench-exchange",
45
"bench-streamer",
56
"bench-tps",
67
"drone",

bench-exchange/Cargo.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[package]
2+
authors = ["Solana Maintainers <maintainers@solana.com>"]
3+
edition = "2018"
4+
name = "solana-bench-exchange"
5+
version = "0.14.0"
6+
repository = "https://github.com/solana-labs/solana"
7+
license = "Apache-2.0"
8+
homepage = "https://solana.com/"
9+
10+
[dependencies]
11+
bs58 = "0.2.0"
12+
clap = "2.32.0"
13+
bincode = "1.1.2"
14+
env_logger = "0.6.0"
15+
itertools = "0.8.0"
16+
log = "0.4.6"
17+
num-traits = "0.2"
18+
num-derive = "0.2"
19+
rayon = "1.0.3"
20+
serde = "1.0.87"
21+
serde_derive = "1.0.87"
22+
serde_json = "1.0.38"
23+
# solana-runtime = { path = "../solana/runtime"}
24+
solana = { path = "../core", version = "0.14.0" }
25+
solana-client = { path = "../client", version = "0.14.0" }
26+
solana-drone = { path = "../drone", version = "0.14.0" }
27+
solana-exchange-api = { path = "../instruction-processors/exchange_api", version = "0.14.0" }
28+
solana-exchange-program = { path = "../instruction-processors/exchange_program", version = "0.14.0" }
29+
solana-logger = { path = "../logger", version = "0.14.0" }
30+
solana-metrics = { path = "../metrics", version = "0.14.0" }
31+
solana-netutil = { path = "../netutil", version = "0.14.0" }
32+
solana-sdk = { path = "../sdk", version = "0.14.0" }
33+
ws = "0.7.9"
34+
untrusted = "0.6.2"
35+
36+
[features]
37+
cuda = ["solana/cuda"]
38+
erasure = []

0 commit comments

Comments
 (0)