Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 3 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,13 @@ solana-commitment-config = "3.0.0"
solana-compute-budget-interface = "3.0.0"
solana-config-interface = "2.0.0"
solana-connection-cache = { git = "https://github.com/anza-xyz/agave.git", rev = "1088d29ee4da0f04df71cb8f286667693412e43f", features = ["agave-unstable-api"] }
solana-core = { git = "https://github.com/anza-xyz/agave.git", rev = "1088d29ee4da0f04df71cb8f286667693412e43f", features = ["agave-unstable-api"] }
solana-epoch-info = "3.0.0"
solana-epoch-schedule = "3.0.0"
solana-faucet = { git = "https://github.com/anza-xyz/agave.git", rev = "1088d29ee4da0f04df71cb8f286667693412e43f", features = ["agave-unstable-api"] }
solana-fee-calculator = "3.0.0"
solana-hash = "3.1.0"
solana-instruction = "3.0.0"
solana-keypair = "3.0.1"
solana-logger = "3.0.0"
solana-measure = { git = "https://github.com/anza-xyz/agave.git", rev = "1088d29ee4da0f04df71cb8f286667693412e43f", features = ["agave-unstable-api"] }
solana-message = "3.0.1"
solana-metrics = { git = "https://github.com/anza-xyz/agave.git", rev = "1088d29ee4da0f04df71cb8f286667693412e43f", features = ["agave-unstable-api"] }
Expand Down
8 changes: 2 additions & 6 deletions rate-latency-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ leader_tracker = [
"futures-util",
"solana-epoch-schedule",
"solana-pubsub-client",
"solana-quic-definitions",
]

[dependencies]
agave-logger = { workspace = true }
async-std = { workspace = true }
async-stream = { workspace = true }
async-trait = { workspace = true }
bincode = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true, features = ["derive", "cargo"] }
Expand All @@ -37,15 +35,12 @@ solana-cli-config = { workspace = true }
solana-clock = { workspace = true }
solana-commitment-config = { workspace = true }
solana-compute-budget-interface = { workspace = true }
solana-connection-cache = { workspace = true }
solana-epoch-schedule = { workspace = true, optional = true }
solana-hash = { workspace = true }
solana-instruction = { workspace = true }
solana-keypair = { workspace = true }
solana-logger = { workspace = true }
solana-measure = { workspace = true }
solana-message = { workspace = true }
solana-native-token = { workspace = true }
solana-pubkey = { workspace = true }
solana-pubsub-client = { workspace = true, optional = true }
solana-quic-definitions = { workspace = true, optional = true }
Expand Down Expand Up @@ -74,6 +69,7 @@ rand = { workspace = true }
solana-epoch-info = { workspace = true }
solana-faucet = { workspace = true, features = ["dev-context-only-utils"] }
solana-fee-calculator = { workspace = true }
solana-native-token = { workspace = true }
solana-net-utils = { workspace = true }
solana-pubsub-client = { workspace = true }
solana-rent = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion rate-latency-tool/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use {
};

fn main() {
solana_logger::setup_with_default("solana=info");
agave_logger::setup_with_default("solana=info");

let opt = build_cli_parameters();
let code = {
Expand Down
2 changes: 1 addition & 1 deletion rate-latency-tool/tests/run_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use {

#[test]
fn test_transactions_sending() {
solana_logger::setup_with("debug");
agave_logger::setup_with("debug");

let mint_keypair = Keypair::new();
let mint_pubkey = mint_keypair.pubkey();
Expand Down
1 change: 0 additions & 1 deletion tools-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ tonic = { workspace = true }
tpu-client-next-extensions = { workspace = true }

[dev-dependencies]
async-trait = { workspace = true }
rand = { workspace = true }
solana-sha256-hasher = { workspace = true }

Expand Down
2 changes: 0 additions & 2 deletions tpu-client-next-extensions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ edition = { workspace = true }
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
async-stream = { workspace = true }
futures = { workspace = true }
futures-util = { workspace = true }
log = { workspace = true }
solana-clock = { workspace = true }
solana-rpc-client = { workspace = true }
solana-tpu-client-next = { workspace = true, features = ["metrics", "agave-unstable-api", "websocket-node-address-service"] }
thiserror = { workspace = true }
Expand Down
4 changes: 1 addition & 3 deletions transaction-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,11 @@ solana-cli-config = { workspace = true }
solana-clock = { workspace = true }
solana-commitment-config = { workspace = true }
solana-compute-budget-interface = { workspace = true }
solana-connection-cache = { workspace = true }
solana-core = { workspace = true }
solana-hash = { workspace = true }
solana-instruction = { workspace = true }
solana-keypair = { workspace = true }
solana-measure = { workspace = true }
solana-message = { workspace = true }
solana-native-token = { workspace = true }
solana-pubkey = { workspace = true }
solana-quic-definitions = { workspace = true }
solana-rent = { workspace = true }
Expand All @@ -60,6 +57,7 @@ tools-common = { workspace = true }

[dev-dependencies]
crossbeam-channel = { workspace = true }
solana-native-token = { workspace = true }
solana-streamer = { workspace = true, features = ["dev-context-only-utils"] }

[lints]
Expand Down