generated from AbstractSDK/templates
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (40 loc) · 1.42 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
[workspace]
members = ["contracts/*", "packages/ibcmail", "tests"]
resolver = "2"
[workspace.package]
version = "0.3.1"
[workspace.dependencies]
cosmwasm-std = { version = "2.0.7", features = ["cosmwasm_2_0"] }
cosmwasm-schema = { version = "2.0.7" }
cw-controllers = { version = "2.0.0" }
cw-storage-plus = "2.0.0"
thiserror = "1.0.50"
cw-paginate = "2.0.0"
schemars = "0.8"
cw-asset = "4.0.0"
cw-orch = "0.26.0"
cw-orch-interchain = { version = "0.8.1" }
abstract-cw-orch-polytone = "6.0.0"
ibcmail = { path = "packages/ibcmail", package = "ibcmail" }
client = { path = "contracts/client", package = "ibcmail-client" }
server = { path = "contracts/server", package = "ibcmail-server" }
abstract-client = { version = "0.25.0", git = "https://github.com/AbstractSDK/abstract", tag = "v0.25.0" }
abstract-app = { version = "0.25.0", git = "https://github.com/AbstractSDK/abstract", tag = "v0.25.0" }
abstract-adapter = { version = "0.25.0", git = "https://github.com/AbstractSDK/abstract", tag = "v0.25.0" }
abstract-interface = { version = "0.25.0", git = "https://github.com/AbstractSDK/abstract", tag = "v0.25.0" }
speculoos = "0.11.0"
semver = "1.0"
dotenv = "0.15.0"
env_logger = { package = "pretty_env_logger", version = "0.5.0" }
clap = "4.3.7"
const_format = "0.2.32"
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false