39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "cw721-base"
|
|
version = "0.10.1"
|
|
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
description = "Basic implementation cw721 NFTs"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/CosmWasm/cw-nfts"
|
|
homepage = "https://cosmwasm.com"
|
|
documentation = "https://docs.cosmwasm.com"
|
|
|
|
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.
|
|
"artifacts/*",
|
|
]
|
|
|
|
# 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]
|
|
cw0 = { version = "0.8.0" }
|
|
cw2 = { version = "0.8.0" }
|
|
cw721 = { path = "../../packages/cw721", version = "0.10.1" }
|
|
cw-storage-plus = { version = "0.8.0" }
|
|
cosmwasm-std = { version = "0.16.0" }
|
|
schemars = "0.8.6"
|
|
serde = { version = "1.0.130", default-features = false, features = ["derive"] }
|
|
thiserror = { version = "1.0.30" }
|
|
|
|
[dev-dependencies]
|
|
cosmwasm-schema = { version = "1.0.0-beta2" }
|