diff --git a/Cargo.lock b/Cargo.lock index ac0d6f9..873e5f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4224,7 +4224,8 @@ dependencies = [ [[package]] name = "spl-account-compression" version = "0.4.0" -source = "git+https://github.com/solana-labs/solana-program-library.git?rev=b8615ab#b8615ab735897b5134dae251ff239461b08ae1dc" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31f461e20e8efb539d7f3f30cd82931ee128651c6366abe326f083b07253a1d6" dependencies = [ "anchor-lang", "bytemuck", @@ -4263,7 +4264,8 @@ dependencies = [ [[package]] name = "spl-concurrent-merkle-tree" version = "0.4.0" -source = "git+https://github.com/solana-labs/solana-program-library.git?rev=b8615ab#b8615ab735897b5134dae251ff239461b08ae1dc" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85d1bbb97252d8a1b90d3d56425038928382a306b71dbba4c836973c94b33f96" dependencies = [ "bytemuck", "solana-program", @@ -4317,7 +4319,8 @@ dependencies = [ [[package]] name = "spl-noop" version = "0.2.0" -source = "git+https://github.com/solana-labs/solana-program-library.git?rev=b8615ab#b8615ab735897b5134dae251ff239461b08ae1dc" +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 cff282f..d1874eb 100644 --- a/blockbuster/Cargo.toml +++ b/blockbuster/Cargo.toml @@ -12,8 +12,8 @@ readme = "../README.md" bytemuck = { version = "1.18.0", features = ["derive"] } spl-token-2022 = { version = "1.0", features = ["no-entrypoint"] } -spl-account-compression = { git = "https://github.com/solana-labs/solana-program-library.git", rev = "b8615ab", features = ["no-entrypoint"] } -spl-noop = { git = "https://github.com/solana-labs/solana-program-library.git", rev = "b8615ab", features = ["no-entrypoint"] } +spl-account-compression = { version = "=0.4.0", features = ["no-entrypoint"] } +spl-noop = { version = "0.2.0", features = ["no-entrypoint"] } mpl-bubblegum = { git = "https://github.com/metaplex-foundation/mpl-bubblegum.git", rev = "07678e6", features = ["test-sbf", "serde"] } mpl-core = { version = "=0.8.0-beta.1", features = ["serde"] }