2023-10-06 14:08:20 +00:00
|
|
|
[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"
|
2023-10-06 14:08:20 +00:00
|
|
|
edition = "2021"
|
2024-07-01 08:00:09 +00:00
|
|
|
description = "The linux bzImage setup binary"
|
|
|
|
|
license = "MPL-2.0"
|
|
|
|
|
repository = "https://github.com/asterinas/asterinas"
|
2023-10-06 14:08:20 +00:00
|
|
|
|
2024-02-21 08:58:40 +00:00
|
|
|
[[bin]]
|
|
|
|
|
name = "linux-bzimage-setup"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
2023-10-06 14:08:20 +00:00
|
|
|
# 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"
|
2024-07-20 12:12:46 +00:00
|
|
|
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"
|
2025-03-13 16:19:32 +00:00
|
|
|
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
|