[package] name = "oraiswap" version = { workspace = true } authors = { workspace = true } edition = { workspace = true } license = { workspace = true } repository = { workspace = true } homepage = { workspace = true } documentation = { workspace = true } description = "Common oraiswap types used in different Oraichain Labs contracts like oraiDEX, IBC Wasm" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] # for quicker tests, cargo test --lib # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] [dependencies] cosmwasm-schema = { workspace = true } cosmwasm-storage = { workspace = true } cosmwasm-std = { workspace = true } thiserror = { workspace = true } # using cw20-base contract as library cw20 = { workspace = true } cw20-base = { workspace = true, features = ["library"] } schemars = "0.8.3" protobuf = { version = "3.2.0", features = ["with-bytes"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # this import is for testing library cw-multi-test = { workspace = true }