29 lines
557 B
TOML
29 lines
557 B
TOML
[package]
|
|
name = "os"
|
|
version = "0.1.0"
|
|
|
|
resolver = "2"
|
|
|
|
[build-dependencies]
|
|
bootloader = { version = "0.11.7" }
|
|
kernel = { path = "../kernel", artifact = "bin", target = "x86_64-unknown-none" }
|
|
|
|
[dependencies]
|
|
# used for UEFI booting in QEMU
|
|
ovmf-prebuilt = "0.1.0-alpha.1"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
strip = false
|
|
debug = 2
|
|
|
|
# [workspace]
|
|
# members = ["kernel", "init", "test_proc", "toolchain_test"]
|
|
# exclude = ["x86_64", "rust"]
|
|
#
|
|
[patch.crates-io]
|
|
x86_64 = { git = "https://gitea.pterpstra.com/mikros/x86_64" }
|