-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
47 lines (43 loc) · 1.21 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
47
[workspace]
members = ["contracts/*"]
resolver = "2"
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
[workspace.dependencies]
cosmwasm-std = { version = "2.1.4" }
cosmwasm-schema = { version = "2.1.4" }
cw-controllers = { version = "2.0.0" }
cw-storage-plus = "2.0.0"
thiserror = { version = "1.0.64" }
schemars = "0.8"
cw-asset = { version = "4.0.0" }
abstract-app = { version = "0.24.1-beta.2" }
abstract-adapter = { version = "0.24.1-beta.2" }
abstract-standalone = { version = "0.24.1-beta.2" }
abstract-interface = { version = "0.24.1-beta.2" }
abstract-client = { version = "0.24.1-beta.2" }
cw-orch = { version = "0.25.1" }
lazy_static = "1.4.0"
const_format = "0.2.33"
speculoos = "0.11.0"
semver = "1.0"
dotenv = "0.15.0"
env_logger = "0.11.5"
clap = { version = "4.5.19" }
{% if include_app %}
{{app_name | kebab_case}} = { path = "contracts/{{app_name}}" }
{% endif %}
{% if include_adapter %}
{{adapter_name | kebab_case}} = { path = "contracts/{{adapter_name}}" }
{% endif %}
{% if include_standalone %}
{{standalone_name | kebab_case}} = { path = "contracts/{{standalone_name}}" }
{% endif %}