-
-
Notifications
You must be signed in to change notification settings - Fork 562
/
Cargo.toml
40 lines (37 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
[workspace]
resolver = "2"
members = [
"examples/rust/rendezvous",
"examples/rust/file_transfer",
"examples/rust/get_started",
"examples/rust/tcp_inlet_and_outlet",
"examples/rust/mitm_node",
"implementations/rust/ockam/*",
"tools/docs/example_blocks",
"tools/docs/example_test_helper",
"tools/stress-test",
]
# See `implementations/rust/ockam/ockam_ebpf/README.md`
exclude = ["implementations/rust/ockam/ockam_ebpf"]
# Coverage profile for generating code coverage with grcov.
#
# See https://github.com/rust-lang/rust/issues/78011.
#
[profile.coverage]
panic = "abort"
opt-level = 0
overflow-checks = false
incremental = false
codegen-units = 1
inherits = "test"
[profile.profiling]
debug = 1
strip = "none"
inherits = "release"
# compromise: minimal optimization on selected dependencies
# to reduce cli bootstrap time by ~5x
# mostly caused by syntect theme loading
[profile.dev.package.syntect]
opt-level = 2
[profile.dev.package.adler2]
opt-level = 1