mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 06:17:49 +00:00
52 lines
996 B
TOML
52 lines
996 B
TOML
[package]
|
|
name = "blog_os"
|
|
version = "0.1.0"
|
|
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
|
|
edition = "2018"
|
|
|
|
[workspace]
|
|
members = [
|
|
"disk_image",
|
|
]
|
|
|
|
[[test]]
|
|
name = "should_panic"
|
|
harness = false
|
|
|
|
[[test]]
|
|
name = "stack_overflow"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
bootloader = { path = "../../uefi-test"}
|
|
rlibc = "1.0.0"
|
|
spin = "0.5.2"
|
|
x86_64 = "0.11.0"
|
|
uart_16550 = "0.2.0"
|
|
pic8259_simple = "0.2.0"
|
|
pc-keyboard = "0.5.0"
|
|
linked_list_allocator = "0.8.0"
|
|
volatile = { path= "../../volatile", features = ["unstable"] }
|
|
font8x8 = { version = "0.2.5", default-features = false, features = ["unicode"]}
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.0"
|
|
features = ["spin_no_std"]
|
|
|
|
[dependencies.crossbeam-queue]
|
|
version = "0.2.1"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dependencies.conquer-once]
|
|
version = "0.2.1"
|
|
default-features = false
|
|
|
|
[dependencies.futures-util]
|
|
version = "0.3.4"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[package.metadata.bootloader]
|
|
map-physical-memory = true
|