forked from 0xekez/cw721-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (43 loc) · 1.65 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
[workspace]
members = ["contracts/*", "packages/*", "debug/*"]
[workspace.package]
authors = ["mr-t <[email protected]>"]
edition = "2021"
homepage = "https://arkprotocol.io"
repository = "https://github.com/arkprotocol/cw721-proxy/"
license = "Apache-2.0"
keywords = ["cosmos", "cosmwasm"]
[workspace.dependencies]
anyhow = "^1.0"
cosmwasm-std = "^1.5"
cosmwasm-schema = "^1.5"
cw-storage-plus = "^1.2"
cw-multi-test = "^0.20"
cw2 = "^1.1"
cw721 = { git = "https://github.com/public-awesome/cw-nfts.git", branch = "release/v0.19.0" }
cw721-base = { git = "https://github.com/public-awesome/cw-nfts.git", branch = "release/v0.19.0" }
cw-ics721-incoming-proxy = { path = "./packages/cw-ics721-incoming-proxy", version = "*" }
cw-ics721-incoming-proxy-derive = { path = "./packages/cw-ics721-incoming-proxy-derive", version = "*" }
cw-ics721-outgoing-proxy = { path = "./packages/cw-ics721-outgoing-proxy", version = "*" }
cw-ics721-outgoing-proxy-derive = { path = "./packages/cw-ics721-outgoing-proxy-derive", version = "*" }
cw-ics721-outgoing-proxy-tester = { path = "./debug/cw-ics721-outgoing-proxy-tester", version = "*" }
cw-paginate-storage = { version = "^2.4", git = "https://github.com/DA0-DA0/dao-contracts.git" }
cw-rate-limiter = { path = "./packages/cw-rate-limiter", version = "*" }
ics721-types = { git = "https://github.com/public-awesome/cw-ics721", tag = "v0.1.5" }
quote = "^1.0"
rand = "^0.8"
syn = "^1.0"
schemars = "^0.8"
serde = "^1.0"
thiserror = "^1.0"
proc-macro2 = "^1.0"
[profile.release]
codegen-units = 1
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = false
overflow-checks = true