lanzaboote/rust/uefi/linux-bootloader/Cargo.toml

25 lines
921 B
TOML

[package]
name = "linux-bootloader"
version.workspace = true
edition = "2021"
publish = true
license = "GPL-3.0-only"
keywords = ["osdev", "linux", "bootloader"]
categories = ["embedded", "hardware-support", "no-std", "os::linux-apis"]
description = "Utilities to build Linux-based bootloaders"
repository = "https://github.com/nix-community/lanzaboote/"
# For UEFI target
rust-version = "1.68"
[dependencies]
uefi = { version = "0.26.0", default-features = false, features = [ "alloc", "global_allocator" ] }
# Update blocked by #237
goblin = { version = "=0.6.1", default-features = false, features = [ "pe64", "alloc" ]}
bitflags = "2.4.2"
# Even in debug builds, we don't enable the debug logs, because they generate a lot of spam from goblin.
log = { version = "0.4.20", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}
[badges]
maintenance = { status = "actively-developed" }