gila/Cargo.toml

32 lines
768 B
TOML

[package]
name = "gila"
version = "0.3.0"
edition = "2024"
[dependencies]
acpi = "5.1.0"
enumflags2 = "0.7.11"
fdt = { git = "https://github.com/repnop/fdt", version = "0.2.0-alpha1" }
flagset = "0.4.7"
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 }
once_cell = { version = "1.20.3", default-features = false, features = ["alloc", "critical-section"] }
spin = "0.10.0"
talc = "4.4.2"
[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