[package] name = "dao-voting-token-staked" authors = [ "Callum Anderson ", "Noah Saso ", "Jake Hartnell ", ] description = "A DAO DAO voting module based on staked token factory or native tokens. Only works with chains that support Token Factory." edition = { workspace = true } license = { workspace = true } repository = { workspace = true } version = { workspace = true } [lib] crate-type = ["cdylib", "rlib"] [features] default = ["osmosis_tokenfactory"] # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] # use library feature to disable all instantiate/execute/query exports library = [] # use test tube feature to enable test-tube integration tests, for example # cargo test --features "test-tube" test-tube = [] # when writing tests you may wish to enable test-tube as a default feature # default = ["test-tube"] # different tokenfactory cosmos sdk module standards. enable corresponding # standard in types library osmosis_tokenfactory = ["cw-tokenfactory-issuer/osmosis_tokenfactory"] cosmwasm_tokenfactory = ["cw-tokenfactory-issuer/cosmwasm_tokenfactory"] kujira_tokenfactory = ["cw-tokenfactory-issuer/kujira_tokenfactory"] [dependencies] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } cw-ownable = { workspace = true } cw-storage-plus = { workspace = true } cw2 = { workspace = true } cw-utils = { workspace = true } cw-controllers = { workspace = true } cw-hooks = { workspace = true } thiserror = { workspace = true } dao-dao-macros = { workspace = true } dao-hooks = { workspace = true } dao-interface = { workspace = true } dao-voting = { workspace = true } cw-tokenfactory-issuer = { workspace = true, default-features = false, features = [ "library", ] }