[package] name = "sg-basic-whitelist" authors = ["Shane Vitarana "] description = "Stargaze Basic Whitelist Interface" version = "0.1.0" 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 } cw-ownable = { workspace = true } sg-basic-whitelist-derive = { path = "./derive/", version = "0.1.0" }