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]
|
2022-11-22 09:18:12 -06:00
|
|
|
uefi = { version = "0.18.0", default-features = false, features = [ "alloc", "exts" ] }
|
|
|
|
uefi-services = { version = "0.15.0", default-features = false, features = [ "panic_handler" ] }
|
2022-11-21 08:36:39 -06:00
|
|
|
log = "0.4.17"
|
2022-11-21 09:03:58 -06:00
|
|
|
ed25519-compact = { version = "2.0.2", default-features = false, features = [] }
|
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-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
|