forked from dcSpark/cardano-multiplatform-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 723 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 723 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
[workspace]
# this is for the new crate structure. The legacy code (current CML) still resides in the `rust` directory.
members = [
"chain/rust",
"chain/wasm",
"chain/wasm/json-gen",
"cip25/rust",
"cip25/wasm",
"cip25/wasm/json-gen",
"cip36/rust",
"cip36/wasm",
"cip36/wasm/json-gen",
"cml/wasm",
"cml/wasm/json-gen",
"core/rust",
"core/wasm",
"crypto/rust",
"crypto/wasm",
"multi-era/rust",
"multi-era/wasm",
"multi-era/wasm/json-gen"
]
# exclude old crate structure to avoid error in it
exclude = [
"rust",
"rust/json-gen",
"tools/metadata-cddl-checker",
"tools/plutus-datum-codegen"
]
[profile.release]
lto = true
opt-level = "z"