2019-10-23 23:19:02 +00:00
|
|
|
[package]
|
|
|
|
name = "xe_os"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Christine Dodrill <me@christine.website>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bootloader = "0.8.0"
|
|
|
|
volatile = "0.2.6"
|
|
|
|
spin = "0.5.2"
|
|
|
|
x86_64 = "0.7.5"
|
|
|
|
uart_16550 = "0.2.0"
|
2019-10-23 23:36:24 +00:00
|
|
|
pic8259_simple = "0.1.1"
|
|
|
|
pc-keyboard = "0.3.1"
|
2019-10-23 23:19:02 +00:00
|
|
|
|
|
|
|
[dependencies.lazy_static]
|
|
|
|
version = "1.0"
|
|
|
|
features = ["spin_no_std"]
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[package.metadata.bootimage]
|
|
|
|
run-args = [
|
2019-10-23 23:36:24 +00:00
|
|
|
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04",
|
2019-10-23 23:19:02 +00:00
|
|
|
"-display", "curses"
|
|
|
|
]
|
|
|
|
test-args = [
|
|
|
|
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04",
|
|
|
|
"-display", "none",
|
|
|
|
"-serial", "stdio"
|
|
|
|
]
|
|
|
|
test-success-exit-code = 33
|
|
|
|
test-timeout = 300
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "should_panic"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "stack_overflow"
|
|
|
|
harness = false
|