-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 832 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 832 Bytes
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
[workspace]
members = [
"contracts/amaci",
"contracts/registry",
"contracts/maci",
"contracts/api-saas",
"contracts/test",
"crates/baby-jubjub",
"crates/maci-utils",
"crates/maci-crypto",
"crates/eddsa-poseidon",
"crates/crypto-test-gen",
]
resolver = "2"
# [workspace.dependencies]
# cosmwasm-schema = "1.2"
# cosmwasm-std = "1.2"
# cosmwasm-storage = "1.2"
# cw-storage-plus = "1.0"
# cw-utils = "1.0"
# schemars = "0.8"
# serde = { version = "1.0", default-features = false, features = ["derive"] }
# thiserror = { version = "1.0" }
# anyhow = "1.0"
# cw-multi-test = "0.16"
[profile.release.package.cw-amaci]
codegen-units = 1
incremental = false
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false
panic = 'abort'