CureOS/Cargo.toml

27 lines
437 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]
x86 = "0.52.0"