-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
51 lines (45 loc) · 1.43 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
[workspace]
members = [
"contracts/headstash-contract",
]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
homepage = "https://terp.network"
repository = "https://github.com/terpnetwork/headstash-patch"
license = "Apache-2.0"
[workspace.dependencies]
cosmwasm-schema = "1.3.1"
cosmwasm-std = { version = "1.5.0", default-features = false, features = ["cosmwasm_1_3"] }
cw-controllers = "1.1.1"
cw2 = "1.1.1"
cw4 = "1.1.1"
cw4-group = "1.1.1"
cw721 = "0.18.0"
cw721-base = "0.18.0"
cw-multi-test = "0.16.2"
cw-storage-plus = "1.1.0"
cw-utils = "1.0.1"
schemars = "0.8.11"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
thiserror = "1.0.31"
url = "2.2.2"
sha2 = { version = "0.10.2", default-features = false }
ethereum-verify = "3.3.0"
headstash-contract = { version = "0.3.0", path = "contracts/headstash-contract" }
semver = "1"
cw-ownable = "0.5.1"
[profile.release.package.headstash-contract]
codegen-units = 1
incremental = false
[profile.release.package.cw-goop]
codegen-units = 1
incremental = false
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false