Files
redox-kernel/Cargo.toml
Jeremy Soller caa607eb28 Merge pull request #70 from redox-os/clippy
Add clippy lints, action some clippy items
2017-12-27 21:32:23 -07:00

33 lines
536 B
TOML

[package]
name = "kernel"
version = "0.1.33"
build = "build.rs"
[lib]
name = "kernel"
path = "src/lib.rs"
crate-type = ["staticlib"]
[dependencies]
alloc_kernel = { path = "alloc_kernel" }
bitflags = "1"
clippy = { version = "*", optional = true }
spin = "0.4"
raw-cpuid = "3.0"
redox_syscall = { path = "syscall" }
[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 = []