forked from CosmWasm/cw-multi-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.56 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "cw-multi-test"
version = "0.16.5"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "Test helpers for multi-contract interactions"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-multi-test"
homepage = "https://cosmwasm.com"
[features]
default = ["iterator", "staking", "cosmwasm_1_1"]
iterator = ["cosmwasm-std/iterator"]
stargate = ["cosmwasm-std/stargate"]
staking = ["cosmwasm-std/staking"]
backtrace = ["anyhow/backtrace"]
cosmwasm_1_1 = ["cosmwasm-std/cosmwasm_1_1"]
cosmwasm_1_2 = ["cosmwasm_1_1", "cosmwasm-std/cosmwasm_1_2"]
cosmwasm_1_3 = ["cosmwasm_1_2", "cosmwasm-std/cosmwasm_1_3"]
# This experimental feature enables stable API to be released in version 1.0 of Multi Test.
# We created this feature to provide as soon as possible a deeper insight into the Multi Test API 1.0.
# Until version 1.0 of Multi Test is officially released, please consider this feature as experimental
# and a subject to change at any time.
# DO NOT enable this feature while testing production ready smart contracts.
multitest_api_1_0 = []
[dependencies]
cw-utils = "1.0"
cw-storage-plus = "1.1"
cosmwasm-std = { version = "1.3", features = ["staking", "stargate"] }
itertools = "0.11"
schemars = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }
prost = "0.11"
anyhow = "1.0"
thiserror = "1.0"
derivative = "2"
sha2 = "0.10"
[dev-dependencies]
# We don't use the following dependency directly,
# we tighten the version so that builds with `-Zminimal-versions` work.
serde_json = "1.0.105"