[package] name = "gila" version = "0.3.0" edition = "2024" [dependencies] acpi = "5.1.0" bitflags = "2.9.1" fdt = { git = "https://github.com/repnop/fdt", version = "0.2.0-alpha1" } flagset = "0.4.7" intbits = "0.2.0" lazy_static = { version = "1.5.0", default-features = false, features = ["spin_no_std"] } limine = "0.4.0" lzma-rs = { git = "https://github.com/glaeqen/lzma-no-std-rs/", version = "0.2.0", default-features = false } num-derive = "0.4.2" num-traits = { version = "0.2.19", default-features = false } once_cell = { version = "1.20.3", default-features = false, features = ["alloc", "critical-section"] } spin = "0.10.0" talc = "4.4.2" tar-no-std = "0.3.4" [target.'cfg(target_arch = "x86_64")'.dependencies] x86_64 = "0.15.2" [lib] name = "gila" path = "src/lib/lib.rs" [[bin]] name = "kernel" path = "src/kernel/main.rs" test = false doctest = false bench = false