[package] name = "astroport-native-coin-wrapper" version = "0.1.0" authors = ["Astroport"] repository = "https://github.com/astroport-fi/astroport" homepage = "https://astroport.fi" description = """ Astroport Native Coin Wrapper wraps native coins to CW20 tokens enabling them to be used as Astroport 3rd party rewards in generator. """ edition = "2021" license = "MIT" 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 = "1.1" cosmwasm-std = "1.1" cw-storage-plus = "0.15" cw2 = "0.15" cw20 = "0.15" cw-utils = "0.15" thiserror = { version = "1.0" } astroport = { workspace = true } [dev-dependencies] cw-multi-test = "0.15" astroport-token = { path = "../../token" }