2023-10-06 14:08:20 +00:00
|
|
|
[package]
|
2023-12-29 07:32:06 +00:00
|
|
|
name = "linux-bzimage-setup"
|
2023-10-06 14:08:20 +00:00
|
|
|
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-12-29 07:32:06 +00:00
|
|
|
linux-boot-params = { path = "../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 = []
|