From d4751d27708454ee74db3adcc00fc8d1765dadc3 Mon Sep 17 00:00:00 2001 From: Kirill Fomichev Date: Mon, 13 Nov 2023 10:07:19 -0500 Subject: [PATCH] solana: update to 1.16.18 --- Cargo.toml | 14 +++++++------- plerkle/Cargo.toml | 10 +++++----- plerkle_serialization/Cargo.toml | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 943c0f2..58c3095 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [workspace] members = [ - "plerkle", # 1.6.0+solana.1.16.17 - "plerkle_messenger", # 1.6.0 - "plerkle_serialization", # 1.6.0+solana.1.16.17 + "plerkle", # 1.6.0+solana.1.16.18 + "plerkle_messenger", # 1.6.8 + "plerkle_serialization", # 1.6.0+solana.1.16.18 ] [profile.release] @@ -11,7 +11,7 @@ lto = true codegen-units = 1 [patch.crates-io] -solana-geyser-plugin-interface = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" } -solana-program = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" } -solana-sdk = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" } -solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" } +solana-geyser-plugin-interface = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.18-geyser-block-v3" } +solana-program = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.18-geyser-block-v3" } +solana-sdk = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.18-geyser-block-v3" } +solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.18-geyser-block-v3" } diff --git a/plerkle/Cargo.toml b/plerkle/Cargo.toml index 2af1ffe..1ddbc71 100644 --- a/plerkle/Cargo.toml +++ b/plerkle/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plerkle" description = "Geyser plugin with dynamic config reloading, message bus agnostic abstractions and a whole lot of fun." -version = "1.6.0+solana.1.16.17" +version = "1.6.0+solana.1.16.18" authors = ["Metaplex Developers "] repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin" license = "AGPL-3.0" @@ -31,10 +31,10 @@ plerkle_serialization = { path = "../plerkle_serialization", version = "1.6.0" } serde = "1.0.144" serde_derive = "1.0.103" serde_json = "1.0.83" -solana-geyser-plugin-interface = "=1.16.17" -solana-logger = "=1.16.17" -solana-sdk = "=1.16.17" -solana-transaction-status = "=1.16.17" +solana-geyser-plugin-interface = "=1.16.18" +solana-logger = "=1.16.18" +solana-sdk = "=1.16.18" +solana-transaction-status = "=1.16.18" thiserror = "1.0.30" tokio = { version = "1.23.0", features = ["full"] } tracing = "0.1.37" diff --git a/plerkle_serialization/Cargo.toml b/plerkle_serialization/Cargo.toml index c577ff3..c895026 100644 --- a/plerkle_serialization/Cargo.toml +++ b/plerkle_serialization/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plerkle_serialization" description = "Metaplex Flatbuffers Plerkle Serialization for Geyser plugin producer/consumer patterns." -version = "1.6.0+solana.1.16.17" +version = "1.6.0+solana.1.16.18" authors = ["Metaplex Developers "] repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin" license = "AGPL-3.0" @@ -14,8 +14,8 @@ bs58 = "0.4.0" chrono = "0.4.22" flatbuffers = "23.1.21" serde = "1.0.152" -solana-sdk = "=1.16.17" -solana-transaction-status = "=1.16.17" +solana-sdk = "=1.16.18" +solana-transaction-status = "=1.16.18" thiserror = "1.0.32" [package.metadata.docs.rs]