asterinas/ostd/libs/linux-bzimage/setup/Cargo.toml

35 lines
978 B
TOML
Raw Normal View History

[package]
2023-12-29 07:32:06 +00:00
name = "linux-bzimage-setup"
2024-12-30 06:39:28 +00:00
version = "0.11.1"
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]
2023-11-16 03:56:17 +00:00
cfg-if = "1.0.0"
core2 = { version = "0.4.0", default-features = false, features = ["nightly"] }
libflate = { version = "2.1.0", default-features = false }
2024-12-30 06:39:28 +00:00
linux-boot-params = { version = "0.11.1", path = "../boot-params" }
2023-10-07 08:30:28 +00:00
uart_16550 = "0.3.0"
2024-10-14 13:56:38 +00:00
xmas-elf = "0.9.1"
2023-11-19 08:26:55 +00:00
[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"
2024-10-14 13:56:38 +00:00
uefi = { version = "0.32.0", features = ["global_allocator", "panic_handler", "logger", "qemu"]}
uefi-raw = "0.8.0"
x86_64 = "0.15.1"
2024-12-09 12:01:06 +00:00
tdx-guest = { version = "0.1.8", optional = true }
2023-11-29 07:54:50 +00:00
[features]
2024-12-09 12:01:06 +00:00
default = ["cvm_guest"]
2023-11-29 07:54:50 +00:00
debug_print = []
2024-12-09 12:01:06 +00:00
cvm_guest = ["dep:tdx-guest"]