forked from automata-network/automata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 761 Bytes
/
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
[workspace]
## The default members are packages with dependencies that are trivial to install
##
## These members will be selected when running `cargo check` or `cargo build` directly
default-members = [
"node/primitives",
"node/rpc",
"node/runtime",
"node/cli",
"node/pallets/*",
"geode/builder",
"geode/macros",
"geode/types"
]
## This full list of members will be selected when running
## - `cargo check --workspace`
## - `cargo build --workspace`
members = [
"node/primitives",
"node/rpc",
"node/runtime",
"node/cli",
"node/pallets/*",
"geode/builder",
"geode/crypto",
"geode/types",
# non-default members
"geode/macros",
"geode/sgx-ra",
]
[profile.release]
panic = 'unwind'