From 7a21e877251b1fa1fcf8ea64be8886384f4dfdf4 Mon Sep 17 00:00:00 2001 From: pacmanifold <105084485+pacmanifold@users.noreply.github.com> Date: Thu, 7 Mar 2024 14:00:31 +0100 Subject: [PATCH] docs: add comment about cw-dex-test-helpers features (#152) --- cw-dex/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cw-dex/Cargo.toml b/cw-dex/Cargo.toml index 81022c8..b0b98bb 100644 --- a/cw-dex/Cargo.toml +++ b/cw-dex/Cargo.toml @@ -39,6 +39,8 @@ cw2 = { workspace = true, optional = true } cw-it = { workspace = true, features = ["multi-test"] } test-case = { workspace = true } cw-dex-test-contract = { workspace = true } +# These features are needed here to run the tests. They cannot be put in the features section +# because cw-dex-test-helpers is not a dependency, so then it can not be published. cw-dex-test-helpers = { workspace = true, features = ["astroport", "osmosis", "osmosis-test-tube"] } proptest = { workspace = true } cw20-base = { workspace = true }