From 3069fc319b864a4abefaed8a1df99d4ef3dd2882 Mon Sep 17 00:00:00 2001 From: Blockiosaurus Date: Fri, 1 Nov 2024 13:56:38 -0400 Subject: [PATCH] Resolving versioning. --- core/rust/utils/Cargo.lock | 2 +- core/rust/utils/Cargo.toml | 20 +++++++++++--------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/core/rust/utils/Cargo.lock b/core/rust/utils/Cargo.lock index 79bd7fbd7..42a0de7b3 100644 --- a/core/rust/utils/Cargo.lock +++ b/core/rust/utils/Cargo.lock @@ -1052,7 +1052,7 @@ dependencies = [ [[package]] name = "mpl-utils" -version = "0.3.4" +version = "0.3.5" dependencies = [ "arrayref", "solana-program", diff --git a/core/rust/utils/Cargo.toml b/core/rust/utils/Cargo.toml index 7de04580e..9fa6d4d35 100644 --- a/core/rust/utils/Cargo.toml +++ b/core/rust/utils/Cargo.toml @@ -1,26 +1,28 @@ [package] -name = "mpl-utils" -version = "0.3.4" -edition = "2021" -description = "MPL Core Utils library" authors = ["Metaplex Developers "] -repository = "https://github.com/metaplex-foundation/metaplex-program-library" +description = "MPL Core Utils library" +edition = "2021" license-file = "../../../LICENSE" +name = "mpl-utils" readme = "README.md" +repository = "https://github.com/metaplex-foundation/metaplex-program-library" +version = "0.3.5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] -crate-type = ["lib", "cdylib"] +crate-type = ["cdylib", "lib"] path = "src/lib.rs" [dependencies] arrayref = "0.3.6" solana-program = ">= 1.14.13, <= 1.18" -spl-token-2022 = { version = ">= 0.6.0, < 0.9", features = ["no-entrypoint"], optional = true } +spl-token-2022 = { version = ">= 0.6.0, < 0.9", features = [ + "no-entrypoint", +], optional = true } [features] -spl-token = ["spl-token-2022"] default = ["spl-token"] +spl-token = ["spl-token-2022"] [profile.release] -overflow-checks = true # Enable integer overflow checks. +overflow-checks = true # Enable integer overflow checks.