-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (39 loc) · 1.2 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
[package]
name = "cosmwasm-testing-util"
version = "0.1.0"
edition = "2021"
[features]
default = ["cosmwasm_1_1"]
backtrace = ["anyhow/backtrace"]
cosmwasm_1_1 = ["cosmwasm-std/cosmwasm_1_1", "cw-multi-test/cosmwasm_1_1"]
cosmwasm_1_2 = [
"cosmwasm_1_1",
"cosmwasm-std/cosmwasm_1_2",
"cw-multi-test/cosmwasm_1_2",
]
cosmwasm_1_3 = [
"cosmwasm_1_2",
"cosmwasm-std/cosmwasm_1_3",
"cw-multi-test/cosmwasm_1_3",
]
cosmwasm_1_4 = [
"cosmwasm_1_3",
"cosmwasm-std/cosmwasm_1_4",
"cw-multi-test/cosmwasm_1_4",
]
[dependencies]
cosmwasm-std = "1.5"
cosmwasm-schema = "1.5"
cosmwasm-crypto = "1.5"
cosmwasm-vm = { version = "1.5", features = ["stargate"] }
bech32 = "0.9.1"
cw20 = { version = "1.0" }
cw20-base = { version = "1.0" }
anyhow = "1.0.41"
cw-multi-test = { version = "1.0" }
tokenfactory = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
token-bindings = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
token-bindings-test = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
osmosis-test-tube = { git = "https://github.com/oraichain/test-tube.git", rev = "84a2f5d", features = [
"wasm-sudo",
] }