[package]
edition = "2021"
name = "mpl-core"
version = "0.11.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible digital asset standard for Solana"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/metaplex-foundation/mpl-core"
[features]
anchor = [
"dep:anchor-lang",
"kaigan/anchor",
]
serde = [
"dep:serde",
"dep:serde_with",
]
test-sbf = []
[lib]
name = "mpl_core"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
[[test]]
name = "add_external_plugins"
path = "tests/add_external_plugins.rs"
[[test]]
name = "create"
path = "tests/create.rs"
[[test]]
name = "create_collection"
path = "tests/create_collection.rs"
[[test]]
name = "create_collection_with_external_plugins"
path = "tests/create_collection_with_external_plugins.rs"
[[test]]
name = "create_with_external_plugins"
path = "tests/create_with_external_plugins.rs"
[[test]]
name = "freeze_execute"
path = "tests/freeze_execute.rs"
[[test]]
name = "plugins"
path = "tests/plugins.rs"
[[test]]
name = "remove_external_plugins"
path = "tests/remove_external_plugins.rs"
[[test]]
name = "remove_external_plugins_on_collection"
path = "tests/remove_external_plugins_on_collection.rs"
[[test]]
name = "transfer"
path = "tests/transfer.rs"
[[test]]
name = "update_collection_info"
path = "tests/update_collection_info.rs"
[[test]]
name = "update_external_plugins"
path = "tests/update_external_plugins.rs"
[[test]]
name = "update_external_plugins_on_collection"
path = "tests/update_external_plugins_on_collection.rs"
[dependencies.anchor-lang]
version = "0.31.1"
optional = true
[dependencies.base64]
version = "0.22.0"
[dependencies.borsh]
version = "^0.10"
[dependencies.kaigan]
version = "0.3.0"
features = ["serde"]
optional = false
[dependencies.modular-bitfield]
version = "0.11.2"
[dependencies.num-derive]
version = "^0.3"
[dependencies.num-traits]
version = "^0.2"
[dependencies.rmp-serde]
version = "1.0"
[dependencies.serde]
version = "^1.0"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_with]
version = "^3.0"
optional = true
[dependencies.solana-program]
version = "2.2.1"
[dependencies.thiserror]
version = "^1.0"
[dev-dependencies.assert_matches]
version = "1.5.0"
[dev-dependencies.solana-program-test]
version = "2.2.1"
[dev-dependencies.solana-sdk]
version = "2.2.1"