[package] name = "cw-desmos-filter-posts" version = "0.1.4" authors = ["bragaz "] edition = "2018" description = "A cosmwasm contract that filters desmos' network posts based on the number of reports a post has" license = "Apache-2.0" repository = "https://github.com/desmos-labs/desmos-contracts" keywords = ["desmos-network", "social-network", "blockchain", "smart-contracts"] 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", "cosmwasm-vm/backtraces"] # use library feature to disable all init/handle/query exports library = [] [dependencies] desmos-cw = { path = "../../packages/desmos-cw", version = "0.1.4" } cosmwasm-std = { version = "1.0.0-beta", features = ["iterator", "staking"] } cosmwasm-storage = { version = "1.0.0-beta", features = ["iterator"] } schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } thiserror = { version = "1.0.23" } [dev-dependencies] cosmwasm-vm = { version = "1.0.0-beta", default-features = true } cosmwasm-schema = { version = "1.0.0-beta" } tempfile = { version = "3.1.0" }