-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
43 lines (38 loc) · 1.4 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
[workspace]
members = [
"cw-vault-standard",
"test-helpers",
]
resolver = "2"
[workspace.package]
edition = "2021"
authors = ["Sturdy <sturdy@apollo.farm>", "Pacman <pacman@apollo.farm>"]
license = "Apache-2.0"
homepage = "https://github.com/apollodao/cw-vault-standard/"
repository = "https://github.com/apollodao/cw-vault-standard/"
keywords = ["cosmos", "cosmwasm"]
[workspace.dependencies]
cosmwasm-std = "1.5.5"
schemars = "0.8.11"
serde = { version = "1.0.152", default-features = false, features = ["derive"] }
cosmwasm-schema = "1.2.1"
cw-utils = { version = "1.0.1" }
cw20 = { version = "1.0.1" }
cw-storage-plus = "1.1.0"
cw2 = "1.1.0"
mars-owner = "2.0.0"
osmosis-std = "0.16.1"
cw-vault-standard = { version = "0.4.1", path = "./cw-vault-standard" }
cw-vault-standard-test-helpers = { version = "0.5.0", path = "./test-helpers" }
# dev dependencies
proptest = "1.2.0"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
overflow-checks = true
opt-level = 3
panic = "abort"
rpath = false