[package] name = "dao-proposal-multiple" authors = ["blue-note"] description = "A DAO DAO proposal module for multiple choice (a or b or c or ...) voting." edition = { workspace = true } license = { workspace = true } repository = { workspace = true } version = { 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-std = { workspace = true, features = ["ibc3"] } cosmwasm-schema = { workspace = true } cw-storage-plus = { workspace = true } cw-utils = { workspace = true } cw2 = { workspace = true } cw20 = { workspace = true } thiserror = { workspace = true } dao-dao-macros = { workspace = true } dao-pre-propose-base = { workspace = true } dao-interface = { workspace = true } dao-voting = { workspace = true } cw-hooks = { workspace = true } dao-hooks = { workspace = true } dao-pre-propose-multiple = { workspace = true } voting-v1 = { workspace = true }