mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-05-22 09:39:44 +00:00
BREAKING CHANGE: bench JSON renames per-step / per-scenario timing fields from *_ms (float milliseconds) to *_s (float seconds). Renames: submit_ms → submit_s, inclusion_ms → inclusion_s, wallet_sync_ms → wallet_sync_s, total_ms → total_s, setup_ms → setup_s, bedrock_finality_ms → bedrock_finality_s, total_wall_seconds → total_wall_s. measure_bedrock_finality timeout floor also shifts slightly: on timeout the field is now ~60.000s rather than "first poll tick past 60s".
30 lines
769 B
TOML
30 lines
769 B
TOML
[package]
|
|
name = "e2e_bench"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = { workspace = true }
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
common.workspace = true
|
|
indexer_service.workspace = true
|
|
indexer_service_rpc = { workspace = true, features = ["client"] }
|
|
integration_tests.workspace = true
|
|
nssa.workspace = true
|
|
sequencer_service.workspace = true
|
|
sequencer_service_rpc = { workspace = true, features = ["client"] }
|
|
wallet.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
borsh.workspace = true
|
|
chrono.workspace = true
|
|
clap.workspace = true
|
|
jsonrpsee = { workspace = true, features = ["ws-client"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tempfile.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
|