2022-11-21 04:44:04 -06:00
|
|
|
[package]
|
2023-01-13 15:10:40 -06:00
|
|
|
name = "lanzaboote_stub"
|
2022-11-21 04:44:04 -06:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-20 17:50:34 -06:00
|
|
|
uefi = { version = "0.19.1", default-features = false, features = [ "alloc", "global_allocator", "unstable" ] }
|
2023-02-20 18:20:50 -06:00
|
|
|
uefi-services = { version = "0.16.0", default-features = false, features = [ "panic_handler", "logger" ] }
|
2022-11-22 09:18:12 -06:00
|
|
|
goblin = { version = "0.6.0", default-features = false, features = [ "pe64", "alloc" ]}
|
2022-11-21 08:36:39 -06:00
|
|
|
|
2023-02-20 18:20:50 -06:00
|
|
|
# Even in debug builds, we don't enable the debug logs, because they generate a lot of spam from goblin.
|
|
|
|
log = { version = "0.4.17", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}
|
|
|
|
|
2023-01-13 19:31:31 -06:00
|
|
|
# Use software implementation because the UEFI target seems to need it.
|
|
|
|
sha2 = { version = "0.10.6", default-features = false, features = ["force-soft"] }
|
2022-11-27 18:37:16 -06:00
|
|
|
|
2022-11-22 08:53:24 -06:00
|
|
|
[profile.release]
|
|
|
|
opt-level = "s"
|
|
|
|
lto = true
|