-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
46 lines (42 loc) · 1.18 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
44
45
46
[package]
name = "cw-multi-test"
version = "2.2.1"
authors = [
"Ethan Frey <[email protected]>",
"Dariusz Depta <[email protected]>"
]
description = "Testing tools for multi-contract interactions"
repository = "https://github.com/CosmWasm/cw-multi-test"
homepage = "https://cosmwasm.com"
license = "Apache-2.0"
edition = "2021"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
backtrace = ["anyhow/backtrace"]
staking = ["cosmwasm-std/staking"]
stargate = ["cosmwasm-std/stargate"]
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"]
cosmwasm_1_4 = ["cosmwasm_1_3", "cosmwasm-std/cosmwasm_1_4"]
cosmwasm_2_0 = ["cosmwasm_1_4", "cosmwasm-std/cosmwasm_2_0"]
cosmwasm_2_1 = ["cosmwasm_2_0", "cosmwasm-std/cosmwasm_2_1"]
[dependencies]
anyhow = "1.0.93"
bech32 = "0.11.0"
cosmwasm-schema = "2.1.4"
cosmwasm-std = "2.1.4"
cw-storage-plus = "2.0.0"
cw-utils = "2.0.0"
itertools = "0.13.0"
prost = "0.13.3"
schemars = "0.8.21"
serde = "1.0.214"
sha2 = "0.10.8"
thiserror = "2.0.0"
[dev-dependencies]
hex = "0.4.3"
hex-literal = "0.4.1"
once_cell = "1.20.2"