Skip to content

Commit

Permalink
Resolving versioning.
Browse files Browse the repository at this point in the history
  • Loading branch information
blockiosaurus committed Nov 1, 2024
1 parent 0ca5009 commit 3069fc3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion core/rust/utils/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 11 additions & 9 deletions core/rust/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
[package]
name = "mpl-utils"
version = "0.3.4"
edition = "2021"
description = "MPL Core Utils library"
authors = ["Metaplex Developers <[email protected]>"]
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.

0 comments on commit 3069fc3

Please sign in to comment.