-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (43 loc) · 1.32 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
48
[workspace]
members = [
"contracts/alliance-hub",
"contracts/alliance-oracle",
"packages/alliance-protocol",
]
exclude = []
[workspace.package]
version = "0.1.1"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/terra-money/alliance-protocol"
homepage = "https://github.com/terra-money/alliance-protocol"
documentation = "https://github.com/terra-money/alliance-protocol"
rust-version = "1.68.2"
[profile.dev]
overflow-checks = false
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = false
[workspace.dependencies]
cosmwasm-std = "1.5.5"
cosmwasm-storage = "1.1.10"
cosmwasm-schema = "1.5.5"
cw_storage_plus_016 = { package = "cw-storage-plus", version = "0.16.0" }
cw_storage_plus_120 = { package = "cw-storage-plus", version = "1.2.0" }
cw_asset_v3 = { package = "cw-asset", version = "3.1.1" }
cw_asset_v2 = { package = "cw-asset", version = "2.4.0" }
schemars = "0.8.11"
serde = { version = "1.0.152", default-features = false, features = ["derive"] }
terra-proto-rs = { version = "3.0.1", default-features = false}
thiserror = { version = "1.0.38" }
cw2 = "1.1.2"
cw20 ="1.1.2"
semver = "1.0.22"
alliance-protocol = { path = "./packages/alliance-protocol" }