redox/Cargo.toml
2016-08-14 11:45:47 -06:00

20 lines
283 B
TOML

[package]
name = "kernel"
version = "0.1.0"
[lib]
path = "kernel/lib.rs"
crate-type = ["staticlib"]
[target.'cfg(target_arch = "x86_64")'.dependencies]
arch = { path = "arch/x86_64" }
[dependencies]
bitflags = "*"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"