forked from halotrade-zone/halo-farm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (55 loc) · 1.87 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
[workspace]
members = [
'contracts/*',
]
[workspace.package]
authors = ["Aura network"]
version = "1.0.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/halotrade-zone/halo-farm"
homepage = "https://halotrade.zone/"
rust-version = "1.66"
[workspace.package.metadata.scripts]
optimize = """docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/rust-optimizer:0.12.11
"""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
halo-farm = { path = "./contracts/halo-farm", features = ["library"]}
halo-farm-factory = { path = "./contracts/halo-farm-factory", features = ["library"]}
bigint = "4.4.3"
cosmwasm-schema = "1.1.8"
cosmwasm-std = "1.1.8"
cosmwasm-storage = "1.1.8"
cw-multi-test = "0.16.1"
cw-storage-plus = "1.0.0"
cw-utils = "1.0.0"
cw2 = "1.0.0"
cw20 = { version = "1.0.0" }
cw20-base = {version = "1.0.0", features = ["library"]}
getrandom = {version = "0.2.8", default-features = false, features = ["js"]}
integer-sqrt = "0.1.5"
thiserror = { version = "1.0.37" }
schemars = "0.8.11"
serde = { version = "1.0.137", default-features = false, features = ["derive"] }
[workspace.dev-dependencies]
cw-multi-test = "0.16.1"
cosmwasm-schema = { version = "1.1.8" }
cosmwasm-storage = { version = "1.1.8" }
[profile.release.package.halo-farm-factory]
codegen-units = 1
incremental = false
[profile.release.package.halo-farm]
codegen-units = 1
incremental = false
[profile.release]
debug = false
debug-assertions = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false