2023-11-12 07:49:35 +00:00
|
|
|
[package]
|
2023-12-29 07:32:06 +00:00
|
|
|
name = "linux-bzimage-builder"
|
2024-04-25 02:07:14 +00:00
|
|
|
description = "Linux boot compatibility for modern OSes"
|
2025-12-25 07:17:37 +00:00
|
|
|
version.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
edition.workspace = true
|
2023-11-12 07:49:35 +00:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-03-08 15:02:53 +00:00
|
|
|
align_ext = { version = "0.1.0", path = "../../align_ext" }
|
2023-11-12 07:49:35 +00:00
|
|
|
bitflags = "1.3"
|
2025-03-08 15:02:53 +00:00
|
|
|
bytemuck = { version = "1.17.0", features = ["derive"] }
|
2024-07-20 12:12:46 +00:00
|
|
|
libflate = "2.1.0"
|
2023-11-12 07:49:35 +00:00
|
|
|
serde = { version = "1.0.192", features = ["derive"] }
|
2025-05-12 07:17:53 +00:00
|
|
|
xmas-elf = "0.10.0"
|
2025-01-24 16:56:07 +00:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|