-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (45 loc) · 1.07 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
49
[workspace]
members = [
"contracts/protocol",
"contracts/vault",
"contracts/vault-factory",
"contracts/call",
"contracts/call-factory",
"integration-tests",
"packages/*",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "BSD-3-Clause"
repository = "https://github.com/interchainnft-options"
version = "0.1.0"
authors = ["author"]
[workspace.dependencies]
cosmwasm-std = { version = "~1", features = ["iterator"] }
cw-storage-plus = "~1"
cw-utils = "~1"
cw2 = "~1"
cw721-base = "~0.18"
cw-ownable = "~0.5"
cw721 = "~0.18"
thiserror = "~1"
cosmwasm-schema = "1.4"
# schemars = "~0.8"
serde = { version = "1.0.183", default-features = false, features = ["derive"] }
env_logger = "~0.10"
log = "~0.4"
lazy_static = "1.4"
once_cell = "1.8"
[profile.release]
codegen-units = 1
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = false
# Please do not disable these. Doing so will cause overflow checks in
# all workspace members to stop working. Overflows should be errors.
overflow-checks = true