[package] name = "vending-minter-merkle-wl" authors = [ "Jake Hartnell ", "Shane Vitarana ", "Kromsten " ] description = "Stargaze vending minter contract using merkle trees" version = { workspace = true } edition = { workspace = true } homepage = { workspace = true } repository = { workspace = true } license = { workspace = true } exclude = [ # Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. "contract.wasm", "hash.txt", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib", "rlib"] [features] # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] # use library feature to disable all instantiate/execute/query exports library = [] [dependencies] cosmwasm-schema = { workspace = true } cosmwasm-std = { workspace = true } cw2 = { workspace = true } cw721 = { workspace = true } cw721-base = { workspace = true, features = ["library"] } cw-storage-plus = { workspace = true } cw-utils = { workspace = true } rand_core = { version = "0.6.4", default-features = false } rand_xoshiro = { version = "0.6.0", default-features = false } schemars = { workspace = true } serde = { workspace = true } sha2 = { workspace = true } shuffle = { git = "https://github.com/webmaster128/shuffle", branch = "rm-getrandom", version = "0.1.7" } sg1 = { workspace = true } sg2 = { workspace = true } sg4 = { workspace = true } sg721 = { workspace = true } sg-std = { workspace = true } sg-whitelist = { workspace = true, features = ["library"] } whitelist-mtree = { workspace = true, features = ["library"] } thiserror = { workspace = true } url = { workspace = true } vending-factory = { workspace = true, features = ["library"] } semver = { workspace = true }