-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (42 loc) · 1.5 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
[workspace]
members = [
"contracts/alliance-hub",
"contracts/alliance-oracle",
"contracts/alliance-lp-hub",
"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.73.0"
[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.4.1"
cosmwasm-storage = "1.4.1"
cosmwasm-schema = "1.1.10"
cw-storage-plus = "0.16.0"
cw-asset = "2.4.0"
schemars = "0.8.11"
serde = { version = "1.0.152", default-features = false, features = ["derive"] }
terra-proto-rs = { version = "4.0.2", default-features = false}
thiserror = { version = "1.0.38" }
cw2 = "1.0.1"
cw20 = "1.0.1"
cw-utils = "1.0.1"
alliance-protocol = { path = "./packages/alliance-protocol" }