dendrobates-t-azureus/Cargo.toml
2019-11-14 14:26:37 +01:00

58 lines
1.2 KiB
TOML

[workspace]
members = [
"vga_buffer",
"polling_serial",
]
[package]
name = "dendrobates_tinctoreus_azureus"
version = "0.1.0"
authors = ["Guillaume DIDIER <guillaume.didier.2014@polytechnique.org>"]
edition = "2018"
[package.metadata.bootimage]
#run-command = ["./scripts/bochs.sh", "{}"]
run-command = ["./scripts/run.sh", "{}"]
test-args = ["qemu"]
run-args = ["bochs"]
#run-command = ["qemu-system-x86_64", "-drive", "format=raw,file={}"]
#test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04"]
test-success-exit-code = 33 # (0x10 << 1) | 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
x86_64 = "0.7.5"
vga_buffer = { path = "vga_buffer" }
polling_serial = { path = "polling_serial" }
volatile = "0.2.6"
linked_list_allocator = "0.6.4"
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
[dependencies.bootloader]
version = "^0.8.2"
features = ["sse", "map_physical_memory"]
#[patch.crates-io]
#bootloader = { path = "../bootloader" }
[profile.dev]
opt-level = 1
debug = 2
[profile.test]
opt-level = 1
debug = 2
[[test]]
name = "panic_test"
harness = false
[[test]]
name = "stack_overflow"
harness = false