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

36 lines
967 B
TOML
Raw Normal View History

[package]
2023-12-29 07:32:06 +00:00
name = "linux-bzimage-setup"
2025-03-14 12:02:41 +00:00
version = "0.13.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]
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 }
2025-03-14 12:02:41 +00:00
linux-boot-params = { version = "0.13.0", 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]
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"
tdx-guest = { version = "0.2.1", 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"]
2025-01-24 16:56:07 +00:00
[lints]
workspace = true