[package] name = "dexter-weighted-pool" version = "1.1.1" authors = ["Persistence Labs"] edition = "2021" description = "A Dexter DEX pool implementing the generalized constant product AMM type as introduced by Balancer" 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"] } serde-json-wasm = "0.5.0" cosmwasm-schema = "1.5.0" const_format = "0.2.30" [dev-dependencies] cw-multi-test = "0.16.2" dexter-vault = { path = "../../vault"} dexter-lp-token = { path = "../../lp_token"} proptest = "0.10.1"