2022-12-10 09:31:37 -08:00
|
|
|
[package]
|
2023-01-12 00:55:30 -08:00
|
|
|
name = "bench"
|
2022-12-10 09:31:37 -08:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-02 03:08:27 -08:00
|
|
|
solana-sdk = { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
|
|
|
|
solana-rpc-client = { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
|
2022-12-10 09:31:37 -08:00
|
|
|
log = "0.4.17"
|
2023-02-05 02:31:55 -08:00
|
|
|
anyhow = "1.0.69"
|
2023-01-02 07:29:59 -08:00
|
|
|
serde = "1.0.152"
|
2023-02-05 02:31:55 -08:00
|
|
|
serde_json = "1.0.92"
|
2023-01-12 00:55:30 -08:00
|
|
|
csv = "1.1.6"
|
2023-01-30 09:01:40 -08:00
|
|
|
clap = { version = "4.1.4", features = ["derive"] }
|
|
|
|
tokio = { version = "1.25.0", features = ["full", "fs"]}
|
2023-01-12 00:55:30 -08:00
|
|
|
tracing-subscriber = "0.3.16"
|
2023-01-16 21:32:19 -08:00
|
|
|
dirs = "4.0.0"
|