cargo-features = ["alternative-registries"] [workspace] [package] name = "mpl-candy-machine-nano" version = "0.1.0" description = "Reworked Metaplex Candy Machine Program Library" edition = "2021" license = "MIT" [profile.release] overflow-checks = true [lib] crate-type = ["cdylib", "lib"] [features] no-entrypoint = [] no-idl = [] cpi = ["no-entrypoint"] default = [] [dependencies] anchor-lang = "^0.24.2" arrayref = "^0.3.6" spl-token = { version = "^3.2.0", features = ["no-entrypoint"] } mpl-token-metadata = { version = "^1.2.5", features = ["no-entrypoint"] } spl-associated-token-account = { version = "^1.0.3", features = [ "no-entrypoint", ] } anchor-spl = "^0.24.2" solana-program = "^1.9.6" solana-gateway = "^0.1.1" [registries.mpl-candy-machine] index = "https://github.com/Nano-Software/mpl-candy-machine" exclude = [ ".cargo_vcs_info.json", "Cargo.toml.orig", "/target/*", "/.idea/*" ] include = [ "**/*.rs", "Cargo.toml", "Xargo.toml" ]