redox/Cargo.toml

25 lines
412 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 22:59:18 +02:00
name = "kernel"
2016-08-14 19:45:47 +02:00
path = "kernel/lib.rs"
2016-08-14 02:21:46 +02:00
crate-type = ["staticlib"]
[dependencies]
bitflags = "*"
2016-08-14 22:59:18 +02:00
[dev-dependencies]
arch_test = { path = "arch/test" }
[target.'cfg(target_arch = "x86_64")'.dependencies]
arch_x86_64 = { path = "arch/x86_64" }
2016-08-15 06:05:32 +02:00
bump_allocator = { path = "alloc/bump_allocator"}
2016-08-14 22:59:18 +02:00
2016-08-14 02:21:46 +02:00
[profile.dev]
panic = "unwind"
2016-08-14 02:21:46 +02:00
[profile.release]
panic = "abort"