[package] name = "gila" version = "0.3.0" edition = "2024" [dependencies] acpi = { version = "5.2.0", optional = true } bitflags = "2.9.1" fdt = { git = "https://github.com/repnop/fdt", version = "0.2.0-alpha1", optional = true } flagset = "0.4.7" intbits = "0.2.0" lazy_static = { version = "1.5.0", default-features = false, features = ["spin_no_std"] } limine = "0.5.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.21.3", default-features = false, features = ["alloc", "critical-section"] } spin = "0.10.0" talc = "4.4.3" tar-no-std = { version = "0.3.4", optional = true } [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 [features] default = ["acpi", "dtb", "uefi", "compression"] acpi = ["dep:acpi"] # Support ACPI dtb = ["dep:fdt"] # Support device tree blobs uefi = [] # Enable UEFI dependent features compression = ["dep:tar-no-std"] # Enable compressed initramfs