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

Commit

Permalink
Test with solana-banking-bench2
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Jun 23, 2023
1 parent eaf0a93 commit 4c62aee
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"accounts-bench",
"accounts-cluster-bench",
"banking-bench",
"banking-bench2",
"banks-client",
"banks-interface",
"banks-server",
Expand Down Expand Up @@ -294,6 +295,7 @@ soketto = "0.7"
solana_rbpf = "=0.5.0"
solana-account-decoder = { path = "account-decoder", version = "=1.17.0" }
solana-address-lookup-table-program = { path = "programs/address-lookup-table", version = "=1.17.0" }
solana-banking-bench = { path = "banking-bench", version = "=1.17.0" }
solana-banks-client = { path = "banks-client", version = "=1.17.0" }
solana-banks-interface = { path = "banks-interface", version = "=1.17.0" }
solana-banks-server = { path = "banks-server", version = "=1.17.0" }
Expand Down
5 changes: 4 additions & 1 deletion banking-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ solana-measure = { workspace = true }
solana-perf = { workspace = true }
solana-poh = { workspace = true }
solana-runtime = { workspace = true }
solana-sdk = { workspace = true }
solana-sdk = { workspace = true, features = ["dev-utils"] }
solana-streamer = { workspace = true }
solana-tpu-client = { workspace = true }
solana-version = { workspace = true }
Expand All @@ -34,3 +34,6 @@ targets = ["x86_64-unknown-linux-gnu"]
[features]
dev-utils = []
dev-utils-ci-marker = ["dev-utils"]

[lib]
crate-type = ["cdylib", "rlib"]
19 changes: 19 additions & 0 deletions banking-bench2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
name = "solana-banking-bench2"
publish = false
version = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }

[dependencies]
solana-banking-bench = { workspace = true, features = ["dev-utils"] }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[features]
tainted-by-dev-utils = ["dev-utils"]
dev-utils = []
Empty file added banking-bench2/src/main.rs
Empty file.

0 comments on commit 4c62aee

Please sign in to comment.