-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
65 lines (58 loc) · 1.91 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
[workspace]
members = ["contracts/*", "packages/*", "unit-tests"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
homepage = "https://stargaze.zone"
repository = "https://github.com/public-awesome/core"
license = "Apache-2.0"
[workspace.dependencies]
stargaze-fair-burn = { path = "contracts/fair-burn", features = ["library"] }
stargaze-royalty-registry = { path = "contracts/royalty-registry", features = [
"library",
] }
vending-factory = { version = "2.1.0", features = ["library"] }
vending-minter = { version = "2.1.0", features = ["library"] }
base-minter = { version = "2.1.0", features = ["library"] }
base-factory = { version = "2.1.0", features = ["library"] }
sg721-base = { version = "2.1.0", features = ["library"] }
sg721 = { version = "2.1.0", features = ["library"] }
sg-index-query = { path = "packages/sg-index-query" }
sg-std = "2.1.0"
sg-marketplace-common = { version = "1.1.0" }
sg2 = "2.1.0"
cosmwasm-schema = "1.3.1"
cosmwasm-std = "1.3.1"
cosmwasm-storage = "1.3.1"
cw-storage-macro = "1.1.0"
cw-storage-plus = "1.1.0"
cw-controllers = "1.1.0"
cw2 = "1.1.0"
cw721 = "0.18.0"
cw721-base = "0.18.0"
cw-utils = "1.0.1"
schemars = "0.8.11"
semver = "1.0.16"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
thiserror = "1.0.31"
anyhow = "1.0.41"
# dev-dependencies
cw-multi-test = "0.16.5"
sg-multi-test = "2.1.0"
assert_matches = "1.5"
serde_json = "1.0"
env_logger = "0.9.0"
test-context = "0.1.4"
once_cell = "1.13.0"
rand = "0.8"
itertools = "0.10.5"
mockall = "0.11.4"
test-suite = "2.1.0"
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false