Skip to content

Commit 3069fc3

Browse files
committed
Resolving versioning.
1 parent 0ca5009 commit 3069fc3

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

core/rust/utils/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/rust/utils/Cargo.toml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,28 @@
11
[package]
2-
name = "mpl-utils"
3-
version = "0.3.4"
4-
edition = "2021"
5-
description = "MPL Core Utils library"
62
authors = ["Metaplex Developers <[email protected]>"]
7-
repository = "https://github.com/metaplex-foundation/metaplex-program-library"
3+
description = "MPL Core Utils library"
4+
edition = "2021"
85
license-file = "../../../LICENSE"
6+
name = "mpl-utils"
97
readme = "README.md"
8+
repository = "https://github.com/metaplex-foundation/metaplex-program-library"
9+
version = "0.3.5"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[lib]
13-
crate-type = ["lib", "cdylib"]
13+
crate-type = ["cdylib", "lib"]
1414
path = "src/lib.rs"
1515

1616
[dependencies]
1717
arrayref = "0.3.6"
1818
solana-program = ">= 1.14.13, <= 1.18"
19-
spl-token-2022 = { version = ">= 0.6.0, < 0.9", features = ["no-entrypoint"], optional = true }
19+
spl-token-2022 = { version = ">= 0.6.0, < 0.9", features = [
20+
"no-entrypoint",
21+
], optional = true }
2022

2123
[features]
22-
spl-token = ["spl-token-2022"]
2324
default = ["spl-token"]
25+
spl-token = ["spl-token-2022"]
2426

2527
[profile.release]
26-
overflow-checks = true # Enable integer overflow checks.
28+
overflow-checks = true # Enable integer overflow checks.

0 commit comments

Comments
 (0)