CureOS/Cargo.toml
2025-05-05 00:43:29 +08:00

26 lines
422 B
TOML
Executable File

[package]
name = "cure"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["staticlib"]
path = "src/lib.rs"
[profile.dev]
panic = "abort"
opt-level = 0
[profile.release]
panic = "abort"
opt-level = 2
[package.metadata.bootimage]
test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio", "-display", "none"]
test-success-exit-code = 33
[features]
default = []
debug = []
[dependencies]