-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
50 lines (46 loc) · 1.05 KB
/
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
49
50
[workspace]
resolver = "2"
members = [
"bootloader",
"kernel",
"lib/apic",
"lib/bootloader_shared",
"lib/kpi",
"lib/lineup",
"lib/node-replication/cnr",
"lib/node-replication/nr",
"lib/rpc",
"lib/vibrio",
"lib/vmxnet3",
"lib/rpc",
"usr/init",
"usr/rkapps",
#"lib/fallible_collections",
#"lib/libfringe",
#"lib/acpica-sys"
#"lib/rust-topology",
#"lib/rust-driverkit",
#"lib/rust-armv8",
#"lib/rust-x86",
#"lib/rawtime",
#"lib/backtracer",
#"lib/rust-klogger",
#"lib/rexpect",
#"lib/pl011_qemu",
]
# disable stack unwinding on panic for now
[profile.dev]
panic = "abort"
debug = true
[profile.release]
panic = "abort"
debug = true
[patch.crates-io]
#x86 = { path = "lib/rust-x86" }
#driverkit = { path = "lib/rust-driverkit" }
#rawtime = { path = "lib/rawtime" }
#atopology = { path = "lib/rust-topology" }
#klogger = { path = "lib/rust-klogger" }
#libacpica = { path = "lib/acpica-sys" }
#rexpect = { path = "lib/rexpect" }
#backtracer_core = { path = "lib/backtracer" }