forked from sched-ext/scx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (47 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
50 lines (47 loc) · 1.08 KB
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
49
50
[workspace]
members = [
"rust/scx_arena/scx_arena",
"rust/scx_arena/selftests",
"rust/scx_bpf_unittests",
"rust/scx_cargo",
"rust/scx_raw_pmu",
"rust/scx_rustland_core",
"rust/scx_stats",
"rust/scx_stats/scx_stats_derive",
"rust/scx_userspace_arena",
"rust/scx_utils",
"scheds/rust/scx_beerland",
"scheds/rust/scx_bpfland",
"scheds/rust/scx_cake",
"scheds/rust/scx_chaos",
"scheds/rust/scx_cosmos",
"scheds/rust/scx_flash",
"scheds/rust/scx_lavd",
"scheds/rust/scx_layered",
"scheds/rust/scx_mitosis",
"scheds/rust/scx_p2dq",
"scheds/rust/scx_rlfifo",
"scheds/rust/scx_rustland",
"scheds/rust/scx_rusty",
"scheds/rust/scx_tickless",
"scheds/rust/scx_wd40",
"tools/scxcash",
"tools/scxtop",
"tools/vmlinux_docify",
"tools/xtask",
]
resolver = "2"
[profile.release]
lto = "thin"
[profile.release-tiny]
inherits = "release"
opt-level = "z"
lto = false
codegen-units = 1
strip = true
panic = "abort"
[profile.release-fast]
inherits = "release"
lto = false
codegen-units = 32
panic = "abort"