donald/Cargo.toml
2024-12-03 19:55:09 -05:00

30 lines
509 B
TOML

[package]
name = "donald"
version = "0.1.0"
edition = "2018"
[profile.dev]
[profile.release]
panic = "abort"
[unstable]
build-std = ["core", "compiler_builtins"]
[dependencies]
bootloader = "0.9"
volatile = "0.2.6"
spin = "0.5.2"
x86_64 = "0.14.2"
uart_16550 = "0.2.0"
pic8259 = "0.10.1"
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
[package.metadata.bootimage]
test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio"]
test-success-exit-code = 33