dendrobates-t-azureus/Cargo.toml

63 lines
1.3 KiB
TOML
Raw Normal View History

2019-10-01 14:53:54 +02:00
[workspace]
members = [
"vga_buffer",
"polling_serial",
2020-02-05 10:23:52 +01:00
"cache_utils",
2020-05-27 14:00:19 +02:00
"cpuid"
2019-10-01 14:53:54 +02:00
]
2019-10-02 09:52:19 +02:00
[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]
2020-05-29 16:26:53 +02:00
x86_64 = "0.11.0"
vga_buffer = { path = "vga_buffer" }
polling_serial = { path = "polling_serial" }
volatile = "0.2.6"
2020-05-29 16:26:53 +02:00
linked_list_allocator = "0.8.4"
cache_utils = { path = "cache_utils", features = ["no_std"], default-features = false }
2020-02-28 12:03:51 +01:00
arrayref = "0.3.6"
[dependencies.lazy_static]
version = "1.4.0"
features = ["spin_no_std"]
[dependencies.bootloader]
2020-05-29 16:26:53 +02:00
version = "0.9.4"
2019-11-04 14:49:00 +01:00
features = ["sse", "map_physical_memory"]
#[patch.crates-io]
#bootloader = { path = "../bootloader" }
[profile.dev]
opt-level = 1
debug = 2
2020-02-04 14:23:14 +01:00
[profile.test]
opt-level = 1
debug = 2
[[test]]
name = "panic_test"
harness = false
[[test]]
name = "stack_overflow"
harness = false