26 lines
391 B
TOML
26 lines
391 B
TOML
[package]
|
|
name = "kernel"
|
|
version = "0.1.0"
|
|
|
|
[lib]
|
|
name = "kernel"
|
|
path = "kernel/lib.rs"
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
bitflags = "*"
|
|
lazy_static = "*"
|
|
spin = "*"
|
|
|
|
[dev-dependencies]
|
|
arch_test = { path = "arch/test" }
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
arch_x86_64 = { path = "arch/x86_64" }
|
|
|
|
[profile.dev]
|
|
panic = "unwind"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|