solana-rpc-v2/stake_aggregate/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2023-08-11 00:13:31 -07:00
[package]
name = "stake_aggregate"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "readsa"
path = "bin/readsa.rs"
2023-08-11 00:13:31 -07:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
bincode = "1.3.3"
2023-08-11 00:13:31 -07:00
borsh = "0.10.3"
bs58 = "0.4.0"
futures = { version = "0.3.28", default-features = false }
futures-util = "0.3.28"
hex = "0.4.3"
log = "0.4.17"
tracing-subscriber = "0.3.16"
tokio = { version = "1.*", features = ["full"] }
2023-08-30 07:06:11 -07:00
reqwest = "0.11"
serde = "1.0"
serde_json = "1.0"
jsonrpsee = { version = "0.20.0", features = ["macros", "server", "full"] }
2023-09-05 03:53:28 -07:00
jsonrpsee-core = "0.20.0"
jsonrpsee-server = "0.20.0"
jsonrpsee-proc-macros = "0.20.0"
jsonrpsee-types = "0.20.0"
2023-09-05 03:53:28 -07:00
thiserror = "1.0.40"
2023-08-30 07:06:11 -07:00
2023-08-11 00:13:31 -07:00
yellowstone-grpc-client = { path = "../../yellowstone-grpc/yellowstone-grpc-client" }
yellowstone-grpc-proto = { path = "../../yellowstone-grpc/yellowstone-grpc-proto" }
#yellowstone-grpc-client = "1.8.0+solana.1.16.1"
#yellowstone-grpc-proto = "1.8.0+solana.1.16.1"
solana-sdk = "1.16.*"
solana-client = "1.16.*"
2023-08-30 07:06:11 -07:00
solana-ledger = "1.16.*"
solana-rpc-client-api = "1.16.*"
solana-version = "1.16.*"