Skip to content

Commit

Permalink
Update mpl-core version, derive clone (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm authored Mar 27, 2024
1 parent 00662c8 commit 748b36a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions blockbuster/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@ spl-token-2022 = { version = "1.0", features = ["no-entrypoint"] }
spl-account-compression = { version = "0.3.0", features = ["no-entrypoint"] }
spl-noop = { version = "0.2.0", features = ["no-entrypoint"] }
mpl-bubblegum = "1.2.0"
mpl-core = { version = "0.1.0", features = ["serde"] }
mpl-core = { version = "0.2.0", features = ["serde"] }
mpl-token-metadata = { version = "4.1.1", features = ["serde"] }
plerkle_serialization = { version = "1.6.0" }
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
async-trait = "0.1.57"
bs58 = "0.4.0"
lazy_static = "1.4.0"
flatbuffers = "23.1.21"
borsh = "~0.10.3"
thiserror = "1.0.32"
log = "0.4.17"
Expand Down
1 change: 1 addition & 0 deletions blockbuster/src/programs/mpl_core_program/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use solana_sdk::{pubkey::Pubkey, pubkeys};

pubkeys!(mpl_core_id, "CoREENxT6tW1HoK8ypY1SxRMZTcVPm7R94rH4PZNhX7d");

#[derive(Clone, Debug, PartialEq)]
pub enum MplCoreAccountData {
Asset(IndexableAsset),
Collection(IndexableAsset),
Expand Down
1 change: 0 additions & 1 deletion blockbuster/src/programs/token_extensions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use crate::{
program_handler::{ParseResult, ProgramParser},
programs::ProgramParseResult,
};
use plerkle_serialization::AccountInfo;
use serde::{Deserialize, Serialize};
use solana_sdk::{pubkey::Pubkey, pubkeys};
use spl_token_2022::{
Expand Down

0 comments on commit 748b36a

Please sign in to comment.