-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
60 lines (54 loc) · 1.74 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
[workspace]
members = ["packages/*", "contracts/*"]
resolver = "2"
[workspace.package]
version = "2.3.0"
edition = "2021"
homepage = "https://stargaze.zone"
repository = "https://github.com/public-awesome/names"
license = "Apache-2.0"
[workspace.dependencies]
cosmwasm-schema = "1.2.1"
cosmwasm-std = "1.2.1"
cw2 = "1.1.2"
cw721 = "0.16.0"
cw721-base = "0.16.0"
cw-controllers = "0.16.0"
cw-multi-test = "0.16.0"
cw-storage-macro = "0.16.0"
cw-storage-plus = "0.16.0"
cw-utils = "0.16.0"
schemars = "0.8.11"
semver = "1"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
sg1 = "0.22.9"
sg721 = "0.22.9"
sg721-base = "0.22.9"
sg-controllers = "0.22.9"
sg-metadata = "0.22.9"
sg-multi-test = "0.22.9"
sg-std = "0.22.9"
thiserror = "1.0.31"
sg-name-common = { path = "./packages/sg-name-common" }
sg-name = { path = "./packages/sg-name" }
sg-name-market = { path = "./packages/sg-name-market" }
sg-name-minter = { path = "./packages/sg-name-minter" }
name-marketplace = { path = "./contracts/marketplace", features = ["library"] }
name-minter = { path = "./contracts/name-minter", features = ["library"] }
sg721-name = { path = "./contracts/sg721-name", features = ["library"] }
[profile.release.package.name-minter]
codegen-units = 1
incremental = false
[profile.release.package.sg721-name]
codegen-units = 1
incremental = false
[profile.release.package.name-marketplace]
codegen-units = 1
incremental = false
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false