XeOS/Cargo.toml

68 lines
1.5 KiB
TOML
Raw Normal View History

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]
2019-10-24 00:30:47 +00:00
bootloader = { version = "0.8.0", features = ["map_physical_memory"]}
2019-10-23 23:19:02 +00:00
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-24 00:30:47 +00:00
linked_list_allocator = "0.6.4"
2019-10-23 23:19:02 +00:00
2019-10-24 01:10:36 +00:00
[dependencies.wasmtime-environ]
git = "https://github.com/CraneStation/wasmtime"
rev = "a7fa6bdb3197ca98bcd1b55665e3bb550888dda1"
default-features = false
features = ["core"]
[dependencies.wasmtime-jit]
git = "https://github.com/CraneStation/wasmtime"
rev = "a7fa6bdb3197ca98bcd1b55665e3bb550888dda1"
default-features = false
features = ["core"]
[dependencies.wasmtime-runtime]
git = "https://github.com/CraneStation/wasmtime"
rev = "a7fa6bdb3197ca98bcd1b55665e3bb550888dda1"
version = "*"
default-features = false
features = ["core"]
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