mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 12:56:48 +00:00
31 lines
671 B
TOML
31 lines
671 B
TOML
[package]
|
|
name = "linux-bzimage-setup"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "The linux bzImage setup binary"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/asterinas/asterinas"
|
|
|
|
[[bin]]
|
|
name = "linux-bzimage-setup"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.0"
|
|
linux-boot-params = { path = "../boot-params", version = "0.1.0" }
|
|
uart_16550 = "0.3.0"
|
|
xmas-elf = "0.8.0"
|
|
|
|
[target.x86_64-unknown-none.dependencies]
|
|
bitflags = "2.4.1"
|
|
log = "0.4.20"
|
|
uefi = "0.26.0"
|
|
uefi-services = "0.23.0"
|
|
x86_64 = "0.14.11"
|
|
|
|
[features]
|
|
default = []
|
|
debug_print = []
|