-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
39 lines (36 loc) · 898 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 = ["contracts/*", "packages/*"]
resolver = "2"
[workspace.package]
version = "0.4.20"
authors = ["Decento Labs"]
edition = "2021"
rust-version = "1.68.0"
license = "TBD"
homepage = "https://milkyway.zone/"
repository = "https://github.com/decento-labs/milkyway-contracts"
documentation = "https://docs.milkyway.zone/"
keywords = ["cosmwasm", "milkyway", "cosmos"]
[workspace.dependencies]
bech32 = "0.9.1"
cosmwasm-schema = "1.5.2"
cosmwasm-std = "1.5.2"
cw2 = "1.0.1"
cw-controllers = "1.1.2"
cw-storage-plus = "1.1.0"
cw-utils = "1.0.1"
osmosis-std = "0.25.0"
schemars = "0.8.12"
semver = "1.0.20"
serde = { version = "1.0.155", default-features = false, features = ["derive"] }
thiserror = "1.0.39"
[profile.release]
codegen-units = 1
opt-level = 3
rpath = false
debug = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = false
overflow-checks = true