Files
redox-kernel/Cargo.toml
2018-04-28 22:07:43 -06:00

38 lines
653 B
TOML

[package]
name = "kernel"
version = "0.1.33"
build = "build.rs"
[lib]
name = "kernel"
path = "src/lib.rs"
crate-type = ["staticlib"]
[dependencies]
bitflags = "1"
clippy = { version = "*", optional = true }
linked_list_allocator = "0.6"
raw-cpuid = "3.0"
redox_syscall = { path = "syscall" }
slab_allocator = { path = "slab_allocator", optional = true }
spin = "0.4"
[dependencies.goblin]
version = "0.0.10"
default-features = false
features = ["elf32", "elf64"]
[dependencies.x86]
version = "0.7"
default-features = false
[features]
default = []
acpi = []
doc = []
graphical_debug = []
live = []
multi_core = []
pti = []
slab = ["slab_allocator"]