Skip to content

Commit

Permalink
Use updated version of Blockbuster that correctly parses
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm committed Nov 2, 2023
1 parent 2077511 commit a2999e2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion das_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ schemars = "0.8.6"
schemars_derive = "0.8.6"
open-rpc-derive = { version = "0.0.4"}
open-rpc-schema = { version = "0.0.4"}
blockbuster = "0.9.0-beta.1"
blockbuster = { git = "https://github.com/metaplex-foundation/blockbuster.git", rev = "1c6939fc4ca13a4a31db622626bdb7f15491618e" }
anchor-lang = "0.28.0"
mpl-token-metadata = { version = "=2.0.0-beta.1", features = ["serde-feature"] }
mpl-candy-machine-core = { version = "2.0.1", features = ["no-entrypoint"] }
Expand Down
2 changes: 1 addition & 1 deletion digital_asset_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ solana-sdk = "~1.16.16"
num-traits = "0.2.15"
num-derive = "0.3.3"
thiserror = "1.0.31"
blockbuster = "0.9.0-beta.1"
blockbuster = { git = "https://github.com/metaplex-foundation/blockbuster.git", rev = "1c6939fc4ca13a4a31db622626bdb7f15491618e" }
jsonpath_lib = "0.3.0"
mime_guess = "2.0.4"
url = "2.3.1"
Expand Down
4 changes: 2 additions & 2 deletions nft_ingester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ spl-concurrent-merkle-tree = "0.2.0"
uuid = "1.0.0"
async-trait = "0.1.53"
num-traits = "0.2.15"
blockbuster = "0.9.0-beta.1"
blockbuster = { git = "https://github.com/metaplex-foundation/blockbuster.git", rev = "1c6939fc4ca13a4a31db622626bdb7f15491618e" }
figment = { version = "0.10.6", features = ["env", "toml", "yaml"] }
cadence = "0.29.0"
cadence-macros = "0.29.0"
solana-sdk = "~1.16.16"
solana-client = "~1.16.16"
spl-token = { version = ">= 3.5.0, < 5.0", features = ["no-entrypoint"] }
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
solana-transaction-status = "~1.16.16"
solana-account-decoder = "~1.16.16"
solana-geyser-plugin-interface = "~1.16.16"
Expand Down
2 changes: 1 addition & 1 deletion tools/acc_forwarder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ solana-account-decoder = "~1.16.16"
solana-client = "~1.16.16"
solana-sdk = "~1.16.16"
solana-transaction-status = "~1.16.16"
spl-token = { version = ">= 3.5.0, < 5.0", features = ["no-entrypoint"] }
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread", "time"] }
txn_forwarder = { path = "../txn_forwarder" }
2 changes: 1 addition & 1 deletion tools/load_generation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ solana-client = "~1.16.16"
solana-program = "~1.16.16"
solana-sdk = "~1.16.16"
spl-associated-token-account = { version = ">= 1.1.3, < 3.0", features = ["no-entrypoint"] }
spl-token = { version = ">= 3.5.0, < 5.0", features = ["no-entrypoint"] }
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
tokio = { version ="1.25.0", features = ["macros", "rt-multi-thread"] }

0 comments on commit a2999e2

Please sign in to comment.