asterinas/framework/libs/boot-wrapper/wrapper/Cargo.toml

24 lines
477 B
TOML
Raw Normal View History

[package]
2023-12-02 16:07:58 +00:00
name = "aster-boot-wrapper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-11-16 03:56:17 +00:00
cfg-if = "1.0.0"
2023-11-19 08:26:55 +00:00
linux_boot_params = { path = "../linux-boot-params" }
2023-10-07 08:30:28 +00:00
uart_16550 = "0.3.0"
2023-11-19 08:26:55 +00:00
xmas-elf = "0.8.0"
[target.x86_64-unknown-none.dependencies]
2023-11-30 14:20:57 +00:00
bitflags = "2.4.1"
2023-11-19 08:26:55 +00:00
log = "0.4.20"
uefi = "0.26.0"
uefi-services = "0.23.0"
2023-11-30 14:20:57 +00:00
x86_64 = "0.14.11"
2023-11-29 07:54:50 +00:00
[features]
2023-11-30 14:20:57 +00:00
default = []
2023-11-29 07:54:50 +00:00
debug_print = []