stub: enable logger in uefi-services
This commit is contained in:
parent
5af69f0d63
commit
7bde42f4a8
|
@ -6,10 +6,12 @@ publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
uefi = { version = "0.19.1", default-features = false, features = [ "alloc", "global_allocator", "unstable" ] }
|
uefi = { version = "0.19.1", default-features = false, features = [ "alloc", "global_allocator", "unstable" ] }
|
||||||
uefi-services = { version = "0.16.0", default-features = false, features = [ "panic_handler" ] }
|
uefi-services = { version = "0.16.0", default-features = false, features = [ "panic_handler", "logger" ] }
|
||||||
log = "0.4.17"
|
|
||||||
goblin = { version = "0.6.0", default-features = false, features = [ "pe64", "alloc" ]}
|
goblin = { version = "0.6.0", default-features = false, features = [ "pe64", "alloc" ]}
|
||||||
|
|
||||||
|
# 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" ]}
|
||||||
|
|
||||||
# Use software implementation because the UEFI target seems to need it.
|
# Use software implementation because the UEFI target seems to need it.
|
||||||
sha2 = { version = "0.10.6", default-features = false, features = ["force-soft"] }
|
sha2 = { version = "0.10.6", default-features = false, features = ["force-soft"] }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue