lanzaboote/rust/uefi/stub/Cargo.toml

21 lines
881 B
TOML
Raw Normal View History

2022-11-21 05:44:04 -05:00
[package]
name = "lanzaboote_stub"
version.workspace = true
2022-11-21 05:44:04 -05:00
edition = "2021"
publish = false
[dependencies]
2024-03-19 00:05:36 -04:00
uefi = { version = "0.27.0", default-features = false, features = [ "alloc", "global_allocator" ] }
uefi-services = { version = "0.24.0", default-features = false, features = [ "panic_handler", "logger" ] }
2023-02-20 19:20:50 -05:00
# Even in debug builds, we don't enable the debug logs, because they generate a lot of spam from goblin.
2024-03-03 19:43:57 -05:00
log = { version = "0.4.21", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}
# Use software implementation because the UEFI target seems to need it.
2023-10-15 21:54:44 -04:00
sha2 = { version = "0.10.8", default-features = false, features = ["force-soft"], optional = true }
# Our linux-bootloader crate containing most of what we need
linux-bootloader = { path = "../linux-bootloader" }
[features]
default = [ "thin" ]
thin = ["dep:sha2"]
fat = []