Files
RedBear-OS/Cargo.toml
T
Jeremy Soller 761fe30bf3 Add linked list allocator with automatic resizing
Fix memory leaks in exec
Remove warnings
2018-01-29 21:29:24 -07:00

36 lines
589 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.5"
raw-cpuid = "3.0"
redox_syscall = { path = "syscall" }
slab_allocator = { path = "slab_allocator" }
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 = []
doc = []
live = []
multi_core = []
pti = []
slab = []