[package] name = "collectxyz-nft-contract" version = "0.2.2" authors = ["0xja <0xja@protonmail.com>"] edition = "2018" description = "The NFT smart contract powering xyz on Terra" license = "Apache-2.0" 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"] [dependencies] base64 = "0.13.0" cosmwasm-std = { version = "0.16.0" } cosmwasm-storage = { version = "0.16.0" } cw-storage-plus = "0.9.1" cw0 = { version = "0.9.1" } cw2 = { version = "0.9.1" } cw721 = { version = "=0.9.1" } cw721-base = { version = "=0.9.1", features = ["library"] } thiserror = "1.0.29" rsa = { version = "0.5.0" } getrandom = { version = "0.2.3" } schemars = "0.8.3" sha2 = { version = "0.9.8" } serde = { version = "1.0.127", default-features = false, features = ["derive"] } serde_json = "1.0.67" collectxyz = { path = "../../packages/collectxyz", version = "0.2.0" } [dev-dependencies] cosmwasm-schema = { version = "0.16.0" }