-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update yanked ahash * fmt / clippy * remove plerkle AccountInfo * remove plerkle TransactionInfo * more refs * increment the crate version for blockbuster * fix: upgrade solana deps to 1.17 * refactor: used published version of plerkle_serialization 1.8.0 * refactor: increase version to 2.0.0 some refactoring of instruction parsing --------- Co-authored-by: Kyle Espinola <[email protected]>
- Loading branch information
Showing
13 changed files
with
712 additions
and
790 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
[package] | ||
name = "blockbuster" | ||
description = "Metaplex canonical program parsers, for indexing, analytics etc...." | ||
version = "1.0.1" | ||
version = "2.0.0" | ||
authors = ["Metaplex Developers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/blockbuster" | ||
license = "AGPL-3.0" | ||
edition = "2021" | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
spl-account-compression = { version = "0.2.0", features = ["no-entrypoint"] } | ||
spl-noop = { version = "0.2.0", features = ["no-entrypoint"] } | ||
mpl-bubblegum = "1.2.0" | ||
mpl-token-metadata = { version = "4.1.1", features = ["serde"] } | ||
plerkle_serialization = { version = "1.6.0" } | ||
spl-token = { version = "4.0.0", features = ["no-entrypoint"] } | ||
anchor-lang = { version = "0.29.0" } | ||
async-trait = "0.1.57" | ||
borsh = "~0.10.3" | ||
bs58 = "0.4.0" | ||
lazy_static = "1.4.0" | ||
flatbuffers = "23.1.21" | ||
borsh = "~0.10.3" | ||
thiserror = "1.0.32" | ||
solana-sdk = "~1.16.11" | ||
anchor-lang = { version = "0.28.0"} | ||
log = "0.4.17" | ||
mpl-bubblegum = "1.2.0" | ||
mpl-token-metadata = { version = "4.1.1", features = ["serde"] } | ||
solana-sdk = "~1.17" | ||
solana-transaction-status = "~1.17" | ||
spl-account-compression = { version = "0.3.0", features = ["no-entrypoint"] } | ||
spl-noop = { version = "0.2.0", features = ["no-entrypoint"] } | ||
spl-token = { version = "4.0.0", features = ["no-entrypoint"] } | ||
thiserror = "1.0.32" | ||
|
||
[dev-dependencies] | ||
flatbuffers = "23.1.21" | ||
plerkle_serialization = "1.8.0" | ||
rand = "0.8.5" | ||
serde_json = "1.0.89" | ||
solana-client = "~1.17" | ||
solana-geyser-plugin-interface = "~1.17" | ||
spl-concurrent-merkle-tree = "0.2.0" | ||
solana-client = "~1.16.11" | ||
solana-transaction-status = "~1.16.11" | ||
solana-geyser-plugin-interface = "~1.16.11" | ||
serde_json="1.0.89" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.