solana-rpc-v2/stake_aggregate/Cargo.toml

77 lines
1.9 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"
[[bin]]
name = "parsestake"
path = "bin/parse_validator_stake.rs"
2023-09-25 11:15:26 -07:00
[[bin]]
name = "readstakes"
path = "bin/read_stake_export.rs"
2023-10-18 03:58:54 -07:00
[[bin]]
name = "stakehistory"
path = "bin/stakehistory.rs"
2023-11-06 02:36:53 -08:00
[[bin]]
name = "sysvaraccount"
path = "bin/sysvaraccount.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"] }
nom = "7.1.3"
itertools = "0.11.0"
2023-08-11 00:13:31 -07:00
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-19 09:30:02 -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-10-18 03:58:54 -07:00
#yellowstone-grpc-client = { path = "../../yellowstone-grpc/yellowstone-grpc-client" }
#yellowstone-grpc-proto = { path = "../../yellowstone-grpc/yellowstone-grpc-proto" }
2023-10-16 03:23:53 -07:00
#yellowstone-grpc-client = { git = "http://github.com/rpcpool/yellowstone-grpc", rev = "c89b89dfc5f03f11f45ac4a6e832386a1d94cb67" }
#yellowstone-grpc-proto = { git = "http://github.com/rpcpool/yellowstone-grpc", rev = "c89b89dfc5f03f11f45ac4a6e832386a1d94cb67" }
2023-08-11 00:13:31 -07:00
2023-10-16 03:25:23 -07:00
#yellowstone-grpc-client = "1.11.0+solana.1.16.14"
#yellowstone-grpc-proto = "1.10.0+solana.1.16.14"
2023-10-08 11:46:27 -07:00
2023-10-20 06:56:14 -07:00
#yellowstone-grpc-client = "v1.10.0+solana.1.16.17"
#yellowstone-grpc-proto = "v1.10.0+solana.1.16.17"
yellowstone-grpc-client = "1.10.0"
yellowstone-grpc-proto = "1.10.0"
2023-10-18 03:58:54 -07:00
2023-09-28 09:17:19 -07:00
solana-sdk = "1.16.14"
solana-client = "1.16.14"
solana-ledger = "1.16.14"
solana-rpc-client-api = "1.16.14"
solana-version = "1.16.14"
solana-account-decoder = "1.16.14"
solana-program = "1.16.14"