diff --git a/account-compression/programs/account-compression/Cargo.toml b/account-compression/programs/account-compression/Cargo.toml index 095ad9d5e7b..a57df385abe 100644 --- a/account-compression/programs/account-compression/Cargo.toml +++ b/account-compression/programs/account-compression/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spl-account-compression" -version = "0.3.0" +version = "0.3.1" description = "Solana Program Library Account Compression Program" authors = ["Solana Labs Maintainers "] repository = "https://github.com/solana-labs/solana-program-library" @@ -21,9 +21,7 @@ default = [] anchor-lang = "0.29.0" bytemuck = "1.13" solana-program = ">=1.18.11,<=2" -spl-concurrent-merkle-tree = { version = "0.3.0", path = "../../../libraries/concurrent-merkle-tree", features = [ - "sol-log", -] } +spl-concurrent-merkle-tree = { version = "0.3.0", path = "../../../libraries/concurrent-merkle-tree" } spl-noop = { version = "0.2.0", path = "../noop", features = ["no-entrypoint"] } [profile.release] diff --git a/account-compression/programs/account-compression/README.md b/account-compression/programs/account-compression/README.md index e57de7a10c6..e720cc57b9d 100644 --- a/account-compression/programs/account-compression/README.md +++ b/account-compression/programs/account-compression/README.md @@ -4,10 +4,8 @@

-# SPL Account Compression Rust SDK (Beta) +# SPL Account Compression Rust SDK More information about account compression can be found in [the solana-program-library repo](https://github.com/solana-labs/solana-program-library/tree/master/account-compression). -The [Solana Program Examples repo](https://github.com/solana-developers/program-examples) will eventually include examples of how to use this program. - -`spl-account-compression` and this crate's implementation are targeted towards supporting [Metaplex Compressed NFTs](https://github.com/metaplex-foundation/metaplex-program-library/tree/master/bubblegum) and may be subject to change. \ No newline at end of file +`spl-account-compression` and this crate's implementation are targeted towards supporting [Metaplex Compressed NFTs](https://github.com/metaplex-foundation/mpl-bubblegum) and may be subject to change. \ No newline at end of file diff --git a/account-compression/sdk/README.md b/account-compression/sdk/README.md index b4f81da6d62..d4c76dbfad0 100644 --- a/account-compression/sdk/README.md +++ b/account-compression/sdk/README.md @@ -167,7 +167,7 @@ Here are some examples using account compression in the wild: * Solana Program Library [tests](https://github.com/solana-labs/solana-program-library/tree/master/account-compression/sdk/tests) -* Metaplex Program Library Compressed NFT [tests](https://github.com/metaplex-foundation/metaplex-program-library/tree/master/bubblegum/js/tests) +* Metaplex Program Library Compressed NFT [tests](https://github.com/metaplex-foundation/mpl-bubblegum/tree/main/clients/js/test) ## Build from Source