vga/testing/Cargo.toml
Philipp Oppermann 98ff35a9e1 Fix Cargo.toml file name
All lowercase cargo.toml is not valid in Rust. As a result, cargo used the Cargo.toml of the parent directory, resulting in a build of the parent crate.
2020-03-13 16:45:16 +01:00

20 lines
487 B
TOML

[package]
name = "testing"
version = "0.1.0"
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
edition = "2018"
[dependencies]
bootloader = "0.8.9"
conquer-once = { version = "0.2.0", default-features = false }
spinning_top = { version = "0.1.0", features = ["nightly"] }
uart_16550 = "0.2.4"
x86_64 = "0.9.6"
[package.metadata.bootimage]
test-args = [
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio",
"-display", "none"
]
test-success-exit-code = 33