rust-operating-system/Cargo.toml

24 lines
533 B
TOML
Raw Permalink Normal View History

2019-07-09 02:02:08 -07:00
[package]
name = "rustos"
version = "0.1.0"
authors = ["greg <greg.shuflin@protonmail.com>"]
edition = "2021"
2019-07-09 02:02:08 -07:00
[dependencies]
#bootloader = "0.10.12"
bootloader = "0.9.8"
2022-02-19 00:54:44 -08:00
spin = "0.9.2"
x86_64 = "0.14.8"
uart_16550 = "0.2.16"
2022-02-19 00:54:44 -08:00
[dependencies.lazy_static]
version = "1.4.0"
features = ["spin_no_std"]
2019-07-09 09:42:41 -07:00
[package.metadata.bootimage]
2022-02-20 02:14:49 -08:00
test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio",
"-display", "none"]
test-success-exit-code = 33 # (0x10 << 1) | 1
2022-02-20 02:14:49 -08:00
test-timeout = 10 # timeout in seconds