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