[package] name = "tgrade-gov-reflect" version = "0.7.0-alpha1" authors = ["Ethan Frey "] edition = "2018" description = "Implementing tgrade-gov-reflect voting contract" repository = "https://github.com/confio/poe-contracts" homepage = "https://tgrade.finance" 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] # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] [dependencies] cosmwasm-std = "1.0.0-beta5" cw-storage-plus = "0.12.1" tg-bindings = { version = "0.7.0-alpha1", path = "../../packages/bindings" } schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } thiserror = "1" [dev-dependencies] cosmwasm-schema = "1.0.0-beta5"