-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 922 Bytes
/
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
[workspace]
members = [ "cw-infuser", "scripts","test-suite"]
resolver = "2"
exclude = ["scripts"]
[workspace.features]
default = []
[workspace.dependencies]
anyhow = "1.0.79"
cosmwasm-schema = "1.5.3"
cosmwasm-std = { version = "1.5.3", features = [
"cosmwasm_1_4",
# Enable this if you only deploy to chains that have CosmWasm 2.0 or higher
# "cosmwasm_2_0",
] }
cw-asset = { version = "3.0.0" }
cw2 = "1.1.2"
cw-storage-plus = "1.2.0"
cw721 = "0.18.0"
cw721-base = { version = "0.18.0", features = ["library"] }
scripts = { path = "../scripts" }
cw-orch = { version = "0.22.2" }
abstract-cw20-base = "2.0.0"
abstract-cw20 = "2.0.0"
serde = { version = "1.0.197", default-features = false, features = ["derive"] }
sha2 = { version = "0.10.2", default-features = false }
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false