plain-os/Cargo.toml

18 lines
348 B
TOML
Raw Normal View History

2022-03-27 15:45:56 +00:00
[package]
name = "plain_os"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
panic = "abort" # disable stack unwinding on panic
[profile.release]
panic = "abort" # disable stack unwinding on panic
[dependencies]
2022-03-27 16:41:22 +00:00
bootloader = "0.9"