diff --git a/Cargo.lock b/Cargo.lock index 053bb11..30f0e68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2217,10 +2217,10 @@ dependencies = [ [[package]] name = "mpl-bubblegum" -version = "1.4.0" -source = "git+https://github.com/adm-metaex/mpl-bubblegum?rev=afebaf7#afebaf7e72a659bae028c72149c63f8009557736" +version = "1.5.0" +source = "git+https://github.com/metaplex-foundation/mpl-bubblegum?rev=c3010c1#c3010c19fd30b5f3893bca08b51f3ae150f41cff" dependencies = [ - "borsh 0.10.3", + "borsh 0.9.3", "kaigan", "num-derive 0.3.3", "num-traits", @@ -4219,13 +4219,14 @@ dependencies = [ [[package]] name = "spl-account-compression" -version = "0.3.1" -source = "git+https://github.com/StanChe/solana-program-library.git?rev=f343436#f343436322f3d61f26058057ee9a83f42cc4b125" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31f461e20e8efb539d7f3f30cd82931ee128651c6366abe326f083b07253a1d6" dependencies = [ "anchor-lang", "bytemuck", "solana-program", - "spl-concurrent-merkle-tree 0.3.0", + "spl-concurrent-merkle-tree 0.4.0", "spl-noop", ] @@ -4258,8 +4259,9 @@ dependencies = [ [[package]] name = "spl-concurrent-merkle-tree" -version = "0.3.0" -source = "git+https://github.com/StanChe/solana-program-library.git?rev=f343436#f343436322f3d61f26058057ee9a83f42cc4b125" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85d1bbb97252d8a1b90d3d56425038928382a306b71dbba4c836973c94b33f96" dependencies = [ "bytemuck", "solana-program", @@ -4313,7 +4315,8 @@ dependencies = [ [[package]] name = "spl-noop" version = "0.2.0" -source = "git+https://github.com/StanChe/solana-program-library.git?rev=f343436#f343436322f3d61f26058057ee9a83f42cc4b125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dd67ea3d0070a12ff141f5da46f9695f49384a03bce1203a5608f5739437950" dependencies = [ "solana-program", ] diff --git a/blockbuster/Cargo.toml b/blockbuster/Cargo.toml index 62acbbf..3afdf46 100644 --- a/blockbuster/Cargo.toml +++ b/blockbuster/Cargo.toml @@ -12,11 +12,10 @@ readme = "../README.md" bytemuck = { version = "1.17.0", features = ["derive"] } spl-token-2022 = { version = "1.0", features = ["no-entrypoint"] } -# Update these deps to original SPL crate after merging 'feature/init_with_root' changes into original repo. -spl-account-compression = { git = "https://github.com/StanChe/solana-program-library.git", rev = "f343436", features = ["no-entrypoint"] } -spl-noop = { git = "https://github.com/StanChe/solana-program-library.git", rev = "f343436", features = ["no-entrypoint"] } -mpl-bubblegum = { git = "https://github.com/adm-metaex/mpl-bubblegum", rev = "afebaf7", features = ["test-sbf", "serde"] } -# ^^^ +spl-account-compression = { version = "0.4.0", features = ["no-entrypoint"] } +spl-noop = { version = "0.2.0", features = ["no-entrypoint"] } +## TODO: replace with a crate as soon as it's published +mpl-bubblegum = { git = "https://github.com/metaplex-foundation/mpl-bubblegum", rev = "c3010c1", features = ["test-sbf", "serde"] } mpl-core = { version = "=0.8.0-beta.1", features = ["serde"] } mpl-token-metadata = { version = "4.1.1", features = ["serde"] }