17 lines
348 B
TOML
17 lines
348 B
TOML
[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]
|
|
bootloader = "0.9"
|