-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (28 loc) · 818 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
[workspace]
resolver = "2"
members = [
"bootloader/uefi",
"bootloader/api",
"bootloader/common",
"bootloader/common/config",
"canicula-common",
"canicula-ext4",
"canicula-kernel",
"canicula-libs",
]
[workspace.dependencies]
bootloader_api = { version = "0.11.8", path = "bootloader/api" }
bootloader-x86_64-common = { version = "0.11.8", path = "bootloader/common" }
bootloader-boot-config = { version = "0.11.8", path = "bootloader/common/config" }
bootloader-x86_64-bios-common = { version = "0.11.8", path = "bootloader/bios/common" }
[workspace.package]
version = "0.11.8"
authors = ["hanbings [email protected]"]
repository = "https://github.com/hanbings/canicula"
license = "MIT"
[profile.release]
debug = true
panic = "unwind"
[profile.dev]
debug = true
panic = "unwind"