-
Notifications
You must be signed in to change notification settings - Fork 181
/
Cargo.toml
73 lines (63 loc) · 2.81 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
69
70
71
72
73
[workspace]
members = ["packages/*", "contracts/*"]
[workspace.package]
version = "0.19.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-nfts"
homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"
rust-version = "1.78"
[workspace.dependencies]
anyhow = "^1.0"
bech32 = "^0.11"
cosmwasm-schema = "^1.5"
cosmwasm-std = "^1.5"
cw2 = "^1.1"
cw20 = "^1.1"
cw721 = { version = "*", path = "./packages/cw721" }
cw721-016 = { git = "https://github.com/CosmWasm/cw-nfts", tag = "v0.16.0", package = "cw721" } # needed for backwards compatibility and legacy migration
cw721-base = { version = "*", path = "./contracts/cw721-base" }
cw721-base-015 = { git = "https://github.com/CosmWasm/cw-nfts", tag = "v0.15.0", package = "cw721-base" } # needed for testing legacy migration
cw721-base-016 = { git = "https://github.com/CosmWasm/cw-nfts", tag = "v0.16.0", package = "cw721-base" } # needed for testing legacy migration
cw721-metadata-onchain-016 = { git = "https://github.com/CosmWasm/cw-nfts", tag = "v0.16.0", package = "cw721-metadata-onchain" } # needed for testing legacy migration
cw721-base-017 = { git = "https://github.com/CosmWasm/cw-nfts", tag = "v0.17.0", package = "cw721-base" } # needed for testing legacy migration
cw721-base-018 = { git = "https://github.com/CosmWasm/cw-nfts", tag = "v0.18.0", package = "cw721-base" } # needed for testing legacy migration
cw-multi-test = { version = "^0.20", features = ["cosmwasm_1_2"] }
cw-ownable = { git = "https://github.com/public-awesome/cw-plus-plus.git", rev = "28c1a09bfc6b4f1942fefe3eb0b50faf9d3b1523"} # TODO: switch to official https://github.com/larry0x/cw-plus-plus once merged
cw-paginate-storage = { version = "^2.4", git = "https://github.com/DA0-DA0/dao-contracts.git" }
cw-storage-plus = "^1.1"
cw-utils = "^1.0"
schemars = "^0.8"
serde = { version = "^1.0", default-features = false, features = ["derive"] }
sha2 = "^0.10"
thiserror = "^1.0"
url = "^2.5"
[profile.release.package.cw721-base]
codegen-units = 1
incremental = false
[profile.release.package.cw721-expiration]
codegen-units = 1
incremental = false
[profile.release.package.cw721-metadata-onchain]
codegen-units = 1
incremental = false
[profile.release.package.cw721-fixed-price]
codegen-units = 1
incremental = false
[profile.release.package.cw721-non-transferable]
codegen-units = 1
incremental = false
[profile.release.package.cw721-receiver-tester]
codegen-units = 1
incremental = false
[profile.release.package.cw2981-royalties]
codegen-units = 1
incremental = false
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false