Cargo Features

[dependencies]
cw-multi-test = { version = "2.0.1", default-features = false, features = ["backtrace", "cosmwasm_2_0"] }
default = cosmwasm_2_0

The cosmwasm_2_0 feature is set by default whenever cw-multi-test is added without default-features = false somewhere in the dependency tree.

backtrace

Enables backtrace of anyhow

cosmwasm_2_0 default

Enables cosmwasm_2_0 of cosmwasm-std

cosmwasm-std:

This enables functionality that is only available on 2.0 chains. It adds CosmosMsg::Any, replacing CosmosMsg::Stargate. It also adds QueryRequest::Grpc.

cw-multi-test has 3 features without comments.