spl: Update `mpl-token-metadata` version requirement to `5` (#3356)

This commit is contained in:
acheron 2024-11-11 23:59:30 +01:00 committed by GitHub
parent 354271cb19
commit e4f5d43a06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -2513,9 +2513,9 @@ dependencies = [
[[package]] [[package]]
name = "mpl-token-metadata" name = "mpl-token-metadata"
version = "5.0.0-beta.0" version = "5.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b89cc55341b83e3331244447b3fa6d8711a386457799e9529c3423f9a9981a37" checksum = "989e6a3000e761d3b2d685662a3a9ee99826f9369fb033bd1bc7011b1cf02ed9"
dependencies = [ dependencies = [
"borsh 0.10.3", "borsh 0.10.3",
"num-derive 0.3.3", "num-derive 0.3.3",

View File

@ -27,7 +27,7 @@ token_2022_extensions = ["spl-token-2022", "spl-token-group-interface", "spl-tok
[dependencies] [dependencies]
anchor-lang = { path = "../lang", version = "0.30.1", features = ["derive"] } anchor-lang = { path = "../lang", version = "0.30.1", features = ["derive"] }
borsh = { version = "0.10.3", optional = true } borsh = { version = "0.10.3", optional = true }
mpl-token-metadata = { version = "5.0.0-beta.0", optional = true } mpl-token-metadata = { version = "5", optional = true }
spl-associated-token-account = { version = "6", features = ["no-entrypoint"], optional = true } spl-associated-token-account = { version = "6", features = ["no-entrypoint"], optional = true }
spl-memo = { version = "6", features = ["no-entrypoint"], optional = true } spl-memo = { version = "6", features = ["no-entrypoint"], optional = true }
spl-token = { version = "7", features = ["no-entrypoint"], optional = true } spl-token = { version = "7", features = ["no-entrypoint"], optional = true }