vga/testing/Cargo.toml

22 lines
588 B
TOML
Raw Normal View History

2020-03-12 18:34:48 +00:00
[package]
name = "testing"
version = "0.1.0"
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
edition = "2018"
[dependencies]
2020-10-30 20:11:43 +00:00
bootloader = { version = "0.9.11", features = ["map_physical_memory"] }
2021-05-19 14:55:37 +00:00
conquer-once = { version = "0.3.2", default-features = false }
spinning_top = { version = "0.2.4", features = ["nightly"] }
2020-05-21 22:04:49 +00:00
pic8259_simple = "0.2.0"
2020-03-13 04:41:00 +00:00
vga = { path = "../" }
2021-05-19 15:03:30 +00:00
uart_16550 = "0.2.14"
2021-05-19 14:55:37 +00:00
x86_64 = "0.14.2"
2020-03-12 18:34:48 +00:00
[package.metadata.bootimage]
test-args = [
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio",
"-display", "none"
]
test-success-exit-code = 33