18 lines
358 B
TOML
18 lines
358 B
TOML
[package]
|
|
name = "shadeos-kernel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
spin = "0.9.7"
|
|
lazy_static = { version = "1.0", features = ["spin_no_std"] }
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
[profile.release]
|
|
panic = "abort" |