forked from DigitalKitchenZone/nft-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (59 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
members = [
"packages/*",
"contracts/collections/*",
"contracts/managers/*",
"contracts/data/*"
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Keyne"]
repository = "https://github.com/DigitalKitchenLabs/nft-contracts"
homepage = "https://coolcat.space"
documentation = "https://docs.cosmwasm.com"
rust-version = "1.65"
[workspace.dependencies]
cosmwasm-schema = "1.2.1"
cosmwasm-std = "1.2.1"
cw2 = "1.0.1"
cw721 = { path = "./packages/cw721" }
cw721-base = { path = "contracts/collections/cw721-base" }
cw721-trait-onchain = { path = "contracts/collections/cw721-trait-onchain" }
cw721-character-onchain = { path = "contracts/collections/cw721-character-onchain" }
mintables = { path = "contracts/data/mintables" }
utils = { path = "./packages/utils" }
cw-multi-test = "0.16.2"
cw-ownable = "0.5.0"
cw-storage-plus = "1.0.1"
cw-utils = "1.0.1"
schemars = "0.8.11"
serde = { version = "1.0.152", default-features = false, features = ["derive"] }
thiserror = "1.0.38"
url = "2.3.1"
sha2 = { version = "0.10.6", default-features = false }
[profile.release.package.cw721-base]
codegen-units = 1
incremental = false
[profile.release.package.cw721-trait-onchain]
codegen-units = 1
incremental = false
[profile.release.package.cw721-character-onchain]
codegen-units = 1
incremental = false
[profile.release.package.trait-manager]
codegen-units = 1
incremental = false
[profile.release.package.character-manager]
codegen-units = 1
incremental = false
[profile.release.package.mintables]
codegen-units = 1
incremental = false
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false