redox/Cargo.toml

31 lines
564 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-16 19:04:14 +02:00
spin = "*"
2016-08-19 15:57:24 +02:00
[dependencies.goblin]
git = "https://github.com/m4b/goblin.git"
crate-type = ["lib"]
default-features = false
features = ["no_mach", "no_mach32", "no_pe", "no_pe32", "no_endian_fd", "pure"]
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-14 02:21:46 +02:00
[profile.dev]
panic = "unwind"
2016-08-14 02:21:46 +02:00
[profile.release]
panic = "abort"