redox/Cargo.toml

20 lines
283 B
TOML
Raw Normal View History

2016-08-14 00:34:27 +02:00
[package]
name = "kernel"
version = "0.1.0"
2016-08-14 02:21:46 +02:00
[lib]
2016-08-14 19:45:47 +02:00
path = "kernel/lib.rs"
2016-08-14 02:21:46 +02:00
crate-type = ["staticlib"]
2016-08-14 19:45:47 +02:00
[target.'cfg(target_arch = "x86_64")'.dependencies]
arch = { path = "arch/x86_64" }
[dependencies]
bitflags = "*"
2016-08-14 02:21:46 +02:00
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"