[package] authors = [ "Maurits Bos ", "Sunny Aggarwal ", "Jake Hartnell ", ] name = "cw-tokenfactory-issuer" description = "A CosmWasm contract that issues new Token Factory tokens on supported chains." version = { workspace = true } edition = { workspace = true } repository = { workspace = true } # This repo was fork from osmosis-labs/cw-tokenfactory-issuer and does not use # the default DAO DAO license license = "Apache-2.0" 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] 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 = ["osmosis_tokenfactory"] # different tokenfactory cosmos sdk module standards. enable corresponding # standard in types library osmosis_tokenfactory = ["cw-tokenfactory-types/osmosis_tokenfactory"] cosmwasm_tokenfactory = ["cw-tokenfactory-types/cosmwasm_tokenfactory"] kujira_tokenfactory = ["cw-tokenfactory-types/kujira_tokenfactory"] [dependencies] cosmwasm-schema = { workspace = true } cosmwasm-std = { workspace = true } cw2 = { workspace = true } cw-ownable = { workspace = true } cw-storage-plus = { workspace = true } cw-tokenfactory-types = { workspace = true, default-features = false } dao-interface = { workspace = true } osmosis-std = { workspace = true } prost = { workspace = true } prost-derive = { workspace = true } schemars = { workspace = true } serde = { workspace = true, default-features = false, features = ["derive"] } thiserror = { workspace = true }