Skip to content

Commit 722eda8

Browse files
committed
solana: pin to v2.2.16
1 parent 46d483a commit 722eda8

File tree

5 files changed

+89
-71
lines changed

5 files changed

+89
-71
lines changed

Cargo.lock

Lines changed: 57 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[workspace]
22
resolver = "2"
33
members = [
4-
"examples/rust", # 7.0.0+solana.2.2.15
5-
"yellowstone-grpc-client", # 7.0.0+solana.2.2.15
6-
"yellowstone-grpc-geyser", # 7.0.0+solana.2.2.15
7-
"yellowstone-grpc-proto", # 7.0.0+solana.2.2.15
4+
"examples/rust", # 7.0.0+solana.2.2.16
5+
"yellowstone-grpc-client", # 7.0.0+solana.2.2.16
6+
"yellowstone-grpc-geyser", # 7.0.0+solana.2.2.16
7+
"yellowstone-grpc-proto", # 7.0.0+solana.2.2.16
88
]
99
exclude = [
1010
"yellowstone-grpc-client-nodejs/solana-encoding-wasm", # 3.0.0
@@ -21,7 +21,11 @@ publish = false
2121

2222
[workspace.dependencies]
2323
affinity = "0.1.2"
24-
agave-geyser-plugin-interface = "=2.2.15"
24+
agave-geyser-plugin-interface = "=2.2.16"
25+
solana-transaction-status = "=2.2.16"
26+
solana-account-decoder = "=2.2.16"
27+
solana-storage-proto = "=2.2.16"
28+
solana-transaction-context = "=2.2.16"
2529
anyhow = "1.0.62"
2630
backoff = "0.4.0"
2731
base64 = "0.22.1"
@@ -55,21 +59,19 @@ prost_011 = { package = "prost", version = "0.11.9" }
5559
protobuf-src = "1.1.0"
5660
serde = "1.0.145"
5761
serde_json = "1.0.86"
58-
solana-account = "=2.2.1"
59-
solana-account-decoder = "=2.2.15"
60-
solana-clock = "=2.2.2"
61-
solana-hash = "=2.3.0"
62-
solana-keypair = "=2.2.1"
63-
solana-logger = "=2.3.1"
64-
solana-message = "=2.4.0"
65-
solana-pubkey = "=2.4.0"
66-
solana-signature = "=2.3.0"
67-
solana-signer = "=2.2.1"
68-
solana-storage-proto = "=2.2.15"
69-
solana-transaction = "=2.2.3"
70-
solana-transaction-context = "=2.2.15"
71-
solana-transaction-error = "=2.2.1"
72-
solana-transaction-status = "=2.2.15"
62+
# Solana SDK https://github.com/anza-xyz/solana-sdk
63+
solana-account = "2.2.1"
64+
solana-clock = "2.2.2"
65+
solana-hash = "2.3.0"
66+
solana-keypair = "2.2.3"
67+
solana-logger = "2.3.1"
68+
solana-message = "2.4.0"
69+
solana-pubkey = "2.4.0"
70+
solana-signature = "2.3.0"
71+
solana-signer = "2.2.1"
72+
solana-transaction = "2.2.3"
73+
solana-transaction-error = "2.2.1"
74+
# End of Solana SDK
7375
smallvec = "1.13.2"
7476
spl-token-2022 = "8.0.0"
7577
thiserror = "1.0.63"
@@ -79,8 +81,8 @@ tonic = "0.12.1"
7981
tonic-build = "0.12.1"
8082
tonic-health = "0.12.1"
8183
vergen = "9.0.0"
82-
yellowstone-grpc-client = { path = "yellowstone-grpc-client", version = "7.0.0+solana.2.2.15" }
83-
yellowstone-grpc-proto = { path = "yellowstone-grpc-proto", version = "7.0.0+solana.2.2.15", default-features = false }
84+
yellowstone-grpc-client = { path = "yellowstone-grpc-client", version = "7.0.0+solana.2.2.16" }
85+
yellowstone-grpc-proto = { path = "yellowstone-grpc-proto", version = "7.0.0+solana.2.2.16", default-features = false }
8486

8587
[workspace.lints.clippy]
8688
clone_on_ref_ptr = "deny"
@@ -92,8 +94,8 @@ lto = true
9294
codegen-units = 1
9395

9496
[patch.crates-io]
95-
agave-geyser-plugin-interface = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.15-triton-public" }
96-
solana-account-decoder = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.15-triton-public" }
97-
solana-storage-proto = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.15-triton-public" }
98-
solana-transaction-context = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.15-triton-public" }
99-
solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.15-triton-public" }
97+
agave-geyser-plugin-interface = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.16-triton-public" }
98+
solana-account-decoder = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.16-triton-public" }
99+
solana-storage-proto = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.16-triton-public" }
100+
solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.16-triton-public" }
101+
solana-transaction-context = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.2.16-triton-public" }

yellowstone-grpc-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yellowstone-grpc-client"
3-
version = "7.0.0+solana.2.2.15"
3+
version = "7.0.0+solana.2.2.16"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
description = "Yellowstone gRPC Geyser Simple Client"

yellowstone-grpc-geyser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yellowstone-grpc-geyser"
3-
version = "7.0.0+solana.2.2.15"
3+
version = "7.0.0+solana.2.2.16"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
description = "Yellowstone gRPC Geyser Plugin"

yellowstone-grpc-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yellowstone-grpc-proto"
3-
version = "7.0.0+solana.2.2.15"
3+
version = "7.0.0+solana.2.2.16"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
description = "Yellowstone gRPC Geyser Protobuf Definitions"

0 commit comments

Comments
 (0)