XeOS/Cargo.toml

68 lines
1.5 KiB
TOML
Raw Permalink 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"
2020-03-27 21:11:09 +00:00
x86_64 = "0.9.6"
2019-10-23 23:19:02 +00:00
uart_16550 = "0.2.0"
2019-10-23 23:36:24 +00:00
pic8259_simple = "0.1.1"
2020-03-27 21:11:09 +00:00
pc-keyboard = "0"
2020-03-26 14:33:11 +00:00
linked_list_allocator = "0"
2020-03-27 23:21:51 +00:00
wasmi = { git = "https://github.com/paritytech/wasmi", default-features=false, features = ["core"] }
2019-10-24 03:26:47 +00:00
compiler_builtins = { git = "https://github.com/rust-lang/compiler-builtins" }
2019-10-24 14:43:38 +00:00
chrono = { git = "https://tulpa.dev/xeos/chrono", default-features=false, features = ["alloc"] }
cmos = "0.1.1"
2019-10-24 01:10:36 +00:00
2019-10-23 23:19:02 +00:00
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
2020-03-27 21:11:09 +00:00
[dependencies.crossbeam-queue]
version = "0.2.1"
default-features = false
features = ["alloc"]
[dependencies.futures-util]
version = "0.3.4"
default-features = false
features = ["alloc"]
[dependencies.conquer-once]
version = "0.2.0"
default-features = false
2019-10-23 23:19:02 +00:00
[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",
2020-03-03 21:38:09 +00:00
"-m", "128"
2019-10-23 23:19:02 +00:00
]
test-args = [
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04",
"-display", "none",
2020-03-03 21:38:09 +00:00
"-serial", "stdio",
"-m", "128"
2019-10-23 23:19:02 +00:00
]
test-success-exit-code = 33
test-timeout = 300
[[test]]
name = "should_panic"
harness = false
[[test]]
name = "stack_overflow"
harness = false