From 5c6c1a5b27af05e6fad45871cc74ab8c6b8e2373 Mon Sep 17 00:00:00 2001 From: Sturdy Date: Sat, 25 Feb 2023 20:08:22 +0100 Subject: [PATCH] fix: Add osmosis feature to cw-it import --- Cargo.lock | 2 ++ cw-dex/Cargo.toml | 2 +- test-helpers/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5b30b660..d2b1e162 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -725,7 +725,9 @@ dependencies = [ "cw20", "git2", "git2_credentials", + "osmosis-std", "osmosis-test-tube", + "proptest", "prost", "serde", "serde_json", diff --git a/cw-dex/Cargo.toml b/cw-dex/Cargo.toml index 757759f1..b04f66b9 100644 --- a/cw-dex/Cargo.toml +++ b/cw-dex/Cargo.toml @@ -35,7 +35,7 @@ astroport-types = { workspace = true, optional = true} uint = {version = "0.9.3", optional = true} [dev-dependencies] -cw-it = { workspace = true } +cw-it = { workspace = true, features = ["osmosis", "astroport"] } test-case = "3.0.0" cw-dex-test-contract = { workspace = true } cw-dex-test-helpers = { workspace = true } diff --git a/test-helpers/Cargo.toml b/test-helpers/Cargo.toml index d42898f7..612a86c7 100644 --- a/test-helpers/Cargo.toml +++ b/test-helpers/Cargo.toml @@ -29,7 +29,7 @@ cosmwasm-std = { workspace = true } apollo-cw-asset = { workspace = true } apollo-utils = { workspace = true } cw-dex-test-contract = { workspace = true } -cw-it = { workspace = true, features = ["astroport"] } +cw-it = { workspace = true, features = ["astroport", "osmosis"] } astroport-types = { workspace = true } cw20 = { workspace = true } cw20-base = { workspace = true }