-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (49 loc) · 1.47 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
[workspace]
members = ["packages/*", "contracts/*", "scripts/"]
[workspace.package]
version = "0.3.2"
edition = "2021"
authors = ["Marc <[email protected]>"]
repository = "https://github.com/kakucodes/authzpp"
[workspace.dependencies]
cw-orch = { version = "0.16.4", features = ["daemon"] }
cosmwasm-schema = "1.1.3"
cosmwasm-std = { version = "1.1.3", default-features = false, features = [
"stargate",
"staking",
] }
cosmwasm-storage = "1.1.3"
cw-storage-plus = "1.0.1"
cw-multi-test = "0.16.2"
cw2 = "1.0.1"
schemars = "0.8.10"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.31" }
semver = "1"
cosmos-sdk-proto = { version = "0.20", default-features = false, features = [
"cosmwasm",
] }
osmosis-test-tube = { version = "20.1.0" }
osmosis-std = { version = "0.20.1" }
authzpp-utils = { path = "./packages/utils" }
authzpp-tt-wrappers = { path = "./packages/test_tube_wrappers" }
cw-grant-spec = { path = "./packages/grant-spec" }
# withdraw-rewards-tax-grant = { path = "./contracts/withdraw_rewards_tax", features = [
# "library",
# ] }
[profile.release.package.withdraw-rewards-tax-grant]
codegen-units = 1
incremental = false
[profile.release.package.allowlist-send]
codegen-units = 1
incremental = false
[profile.release.package.allowed-denoms-send]
codegen-units = 1
incremental = false
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false