donald/Cargo.toml

31 lines
509 B
TOML
Raw Normal View History

2024-12-03 19:37:56 +00:00
[package]
name = "donald"
version = "0.1.0"
edition = "2018"
[profile.dev]
2024-12-03 21:56:36 +00:00
2024-12-03 19:37:56 +00:00
[profile.release]
panic = "abort"
2024-12-03 20:05:13 +00:00
[unstable]
build-std = ["core", "compiler_builtins"]
2024-12-03 19:37:56 +00:00
[dependencies]
2024-12-03 20:05:13 +00:00
bootloader = "0.9"
2024-12-03 21:16:06 +00:00
volatile = "0.2.6"
spin = "0.5.2"
2024-12-03 23:02:53 +00:00
x86_64 = "0.14.2"
uart_16550 = "0.2.0"
2024-12-04 00:55:09 +00:00
pic8259 = "0.10.1"
2024-12-03 21:16:06 +00:00
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
2024-12-03 23:02:53 +00:00
[package.metadata.bootimage]
test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio"]
test-success-exit-code = 33