[package] name = "kernel" version = "0.3.1" edition = "2024" license = "MIT" [dependencies] acid_alloc = { version = "0.1.0", features = ["alloc"] } enumflags2 = "0.7.12" flagset = "0.4.7" free-list = { version = "0.3.1", features = ["x86_64"] } intbits = "0.2.0" lazy_static = { version = "1.5.0", default-features = false, features = ["spin_no_std"] } limine = "0.5.0" 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" libgila = { path = "../libgila" } [target.'cfg(target_arch = "x86_64")'.dependencies] x86_64 = "0.15.2" raw-cpuid = "11.6.0" [[bin]] name = "kernel" path = "src/main.rs" test = false doctest = false bench = false