marketplace 0.1.0

auction marketplace library.
Documentation
[package]
name = "marketplace"
version     = { workspace = true }
authors = ["0xplanet"]
license = { workspace = true }
description = "auction marketplace library."
edition = "2018"

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"]

[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true

[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cosmwasm-std      = { workspace = true, features = ["stargate"] }
cosmwasm-storage  = { workspace = true }
schemars          = { workspace = true }
serde             = { version = "1.0.156", default-features = false, features = ["derive"] }
cw721             = { workspace = true }
cosmwasm-schema = { version = "2.0.0" }

[dev-dependencies]