mirror of
https://github.com/0xfnzero/solana-streamer.git
synced 2026-08-19 20:08:07 +00:00
feat: upgrade to Solana SDK v3.0.0 and
modernize dependencies - Upgrade all Solana SDK dependencies from v2.3.x to v3.0.0 - Update yellowstone-grpc dependencies from v8.0.0 to v9.0.0 - Upgrade tonic from v0.12.3 to v0.14.2 with transport features - Update prost and prost-types to v0.14.1 - Add solana-commitment-config and tonic-prost dependencies - Migrate from solana-sdk::instruction to message::compiled_instruction - Update imports for SPL token pack compatibility - Fix type compatibility issues with new gRPC and protobuf versions - Regenerate proto files with updated codegen and server implementations
This commit is contained in:
+20
-18
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "solana-streamer-sdk"
|
||||
version = "0.4.13"
|
||||
version = "0.5.0"
|
||||
edition = "2021"
|
||||
authors = ["William <byteblock6@gmail.com>", "sgxiang <sgxiang@gmail.com>", "wei <1415121722@qq.com>"]
|
||||
repository = "https://github.com/0xfnzero/solana-streamer"
|
||||
@@ -13,18 +13,18 @@ readme = "README.md"
|
||||
crate-type = ["cdylib", "rlib"]
|
||||
|
||||
[dependencies]
|
||||
solana-sdk = "2.3.0"
|
||||
solana-client = "2.3.6"
|
||||
solana-program = "2.3.0"
|
||||
solana-rpc-client = "2.3.6"
|
||||
solana-rpc-client-api = "2.3.6"
|
||||
solana-transaction-status = "2.3.6"
|
||||
solana-account-decoder = "2.3.6"
|
||||
solana-hash = "2.3.0"
|
||||
solana-entry = "2.3.6"
|
||||
solana-rpc-client-nonce-utils = "2.3.6"
|
||||
solana-perf = "2.3.6"
|
||||
solana-metrics = "2.3.6"
|
||||
solana-sdk = "3.0.0"
|
||||
solana-client = "3.0.0"
|
||||
solana-program = "3.0.0"
|
||||
solana-rpc-client = "3.0.0"
|
||||
solana-rpc-client-api = "3.0.0"
|
||||
solana-transaction-status = "3.0.0"
|
||||
solana-account-decoder = "3.0.0"
|
||||
solana-hash = "3.0.0"
|
||||
solana-entry = "3.0.0"
|
||||
solana-rpc-client-nonce-utils = "3.0.0"
|
||||
solana-perf = "3.0.0"
|
||||
solana-metrics = "3.0.0"
|
||||
spl-associated-token-account = "7.0.0"
|
||||
borsh = { version = "1.5.3", features = ["derive"] }
|
||||
serde = { version = "1.0.215", features = ["derive"] }
|
||||
@@ -36,10 +36,10 @@ base64 = "0.22.1"
|
||||
rand = "0.9.0"
|
||||
bincode = "1.3.3"
|
||||
anyhow = "1.0.90"
|
||||
yellowstone-grpc-client = { version = "8.0.0" }
|
||||
yellowstone-grpc-proto = { version = "8.0.0" }
|
||||
yellowstone-grpc-client = { version = "9.0.0" }
|
||||
yellowstone-grpc-proto = { version = "9.0.0" }
|
||||
tokio = { version = "1.42.0", features = ["full", "rt-multi-thread"]}
|
||||
tonic = { version = "0.12.3", features = ["tls", "tls-roots", "tls-webpki-roots"] }
|
||||
tonic = { version = "0.14.2", features = ["transport"] }
|
||||
rustls = { version = "0.23.23", features = ["ring"], default-features = false }
|
||||
rustls-native-certs = "0.8.1"
|
||||
tokio-rustls = "0.26.1"
|
||||
@@ -52,8 +52,8 @@ async-trait = "0.1.86"
|
||||
lazy_static = "1.5.0"
|
||||
once_cell = "1.20.3"
|
||||
dashmap = "6.0.1"
|
||||
prost = "0.13.5"
|
||||
prost-types = "0.13.5"
|
||||
prost = "0.14.1"
|
||||
prost-types = "0.14.1"
|
||||
num_enum = "0.7.3"
|
||||
num-derive = "0.4.2"
|
||||
num-traits = "0.2.19"
|
||||
@@ -70,6 +70,8 @@ parking_lot = "0.12.1"
|
||||
wide = "0.7"
|
||||
spl-token = "8.0.0"
|
||||
spl-token-2022 = "9.0.0"
|
||||
solana-commitment-config = { version = "3.0.0", features = ["serde"] }
|
||||
tonic-prost = "0.14.2"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = { version = "0.5", features = ["html_reports"] }
|
||||
Reference in New Issue
Block a user