29 lines
489 B
TOML
29 lines
489 B
TOML
[package]
|
|
name = "gila"
|
|
version = "0.2.3"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
acpi = "5.1.0"
|
|
enumflags2 = "0.7.11"
|
|
flagset = "0.4.6"
|
|
limine = "0.4.0"
|
|
once_cell = { version = "1.20.3", default-features = false, features = ["alloc", "critical-section"] }
|
|
spin = "0.9.8"
|
|
talc = "4.4.2"
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
vga = "0.2.9"
|
|
|
|
[lib]
|
|
name = "gila"
|
|
path = "src/lib/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "kernel"
|
|
path = "src/kernel/main.rs"
|
|
test = false
|
|
doctest = false
|
|
bench = false
|
|
|