redox/Cargo.toml

34 lines
619 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 = "*"
redox_syscall = { path = "syscall/" }
2016-11-14 18:46:32 +01:00
[dependencies.goblin]
git = "https://github.com/redox-os/goblin.git"
default-features = false
features = ["elf32", "elf64"]
2016-08-14 22:59:18 +02:00
[dev-dependencies]
arch_test = { path = "arch/test" }
2016-08-26 01:03:01 +02:00
[target.'cfg(target_arch = "arm")'.dependencies]
arch_arm = { path = "arch/arm" }
2016-08-14 22:59:18 +02:00
[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"