[package] name = "astroport-native-coin-registry" version = "1.1.0" authors = ["Astroport"] edition = "2021" description = "Astroport Native Coin Registry serves as a simple on-chain registry for native coin precisions which must be governed by trustfull parties like DAO." license = "GPL-3.0-only" repository = "https://github.com/astroport-fi/astroport" homepage = "https://astroport.fi" 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-schema.workspace = true cosmwasm-std.workspace = true cw-storage-plus.workspace = true cw2.workspace = true thiserror.workspace = true itertools.workspace = true astroport = { path = "../../../packages/astroport", version = "5.2" } [dev-dependencies] cw-multi-test = "1.0.0"