From 4f321961de69180f3c8a6bc0844c6e4f612b73d8 Mon Sep 17 00:00:00 2001 From: Fernando Otero Date: Mon, 31 Jul 2023 23:39:11 +0100 Subject: [PATCH] Bump solana dependency (#1155) * Bump solana dependency * Add range to spl-token --- core/rust/utils/Cargo.lock | 1 - core/rust/utils/Cargo.toml | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/core/rust/utils/Cargo.lock b/core/rust/utils/Cargo.lock index 71f26488ba..5299c02b53 100644 --- a/core/rust/utils/Cargo.lock +++ b/core/rust/utils/Cargo.lock @@ -820,7 +820,6 @@ name = "mpl-utils" version = "0.3.0" dependencies = [ "arrayref", - "borsh", "solana-program", "spl-token-2022", ] diff --git a/core/rust/utils/Cargo.toml b/core/rust/utils/Cargo.toml index 807e42f6c6..d36fe9886c 100644 --- a/core/rust/utils/Cargo.toml +++ b/core/rust/utils/Cargo.toml @@ -14,10 +14,9 @@ crate-type = ["lib", "cdylib"] path = "src/lib.rs" [dependencies] -solana-program = "~1.14.13" -borsh = "0.9.3" arrayref = "0.3.6" -spl-token-2022 = { version = "~0.6.0", features = ["no-entrypoint"], optional = true } +solana-program = ">= 1.14.13, < 1.17" +spl-token-2022 = { version = ">= 0.6.0, < 0.7", features = ["no-entrypoint"], optional = true } [features] spl-token = ["spl-token-2022"]