-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (44 loc) · 978 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
38
39
40
41
42
43
44
45
46
47
48
[workspace]
members = [
"bin/common",
"bin/raiden",
"bin/state-replayer",
"bin/token-ops",
"raiden/raiden-rs",
"raiden/api",
"raiden/blockchain",
"raiden/macros",
"raiden/state-machine",
"raiden/transition",
"raiden/network/messages",
"raiden/network/transport",
]
default-members = [
"raiden/raiden-rs",
"raiden/api",
"raiden/blockchain",
"raiden/macros",
"raiden/state-machine",
"raiden/transition",
"raiden/network/messages",
"raiden/network/transport",
]
resolver = "2"
[profile.dev]
opt-level = 2
panic = "abort"
[profile.dev.package."*"]
opt-level = 3
# The `test` profile mimics the `dev` profile to avoid recompilations.
[profile.test]
opt-level = 2
[profile.test.package."*"]
opt-level = 3
[profile.release]
panic = "abort"
lto = true
# https://docs.rs/about/metadata
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
cargo-args = ["-Z", "build-std"]