[package] name = "dexter-stable-pool" version = "1.1.1" authors = ["Persistence Labs"] edition = "2021" description = "A Dexter DEX pool implementing the stableswap and metastable AMM models" 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 quicker tests, cargo test --lib # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] [dependencies] integer-sqrt = "0.1.5" dexter = { version = "1.4.0", path = "../../../packages/dexter", default-features = false } cw2 = "1.0.1" cw20 = "1.0.1" cosmwasm-std = "1.5.0" cw-storage-plus = "1.0.1" schemars = "0.8.11" serde = { version = "1.0.152", default-features = false, features = ["derive"] } thiserror = "1.0.38" protobuf = { version = "2", features = ["with-bytes"] } itertools = "0.10.5" serde-json-wasm = "0.5.0" cosmwasm-schema = "1.5.0" const_format = "0.2.30" [dev-dependencies] anyhow = "1.0" sim = { git = "https://github.com/dexter-zone/stableswap_simulations.git", rev = "d40f0e77f6b21cccdd8415f6f36db31f76be2f3f", package = "sim" } dexter-lp-token = {path = "../../lp_token"} cw-multi-test = "0.16.2" dexter-vault = { path = "../../vault"} proptest = "0.10.1"