efigife/Cargo.toml

20 lines
537 B
TOML
Raw Normal View History

2024-05-05 18:14:45 +00:00
[workspace]
members = ["efi-bin", "xtask"]
resolver = "2"
2024-05-05 03:37:03 +00:00
2024-05-05 21:27:07 +00:00
[profile.release]
2024-05-08 00:37:23 +00:00
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
2024-05-05 21:27:07 +00:00
[workspace.dependencies]
2024-05-08 00:37:23 +00:00
aligned-vec = { version = "0.5.0", default-features = false }
fatfs = { path = "rust-fatfs", default-features = false, features = ["alloc", "chrono"] }
embedded-graphics = "0.8.1"
2024-05-07 06:06:15 +00:00
mbrs = "0.3.1"
tinygif = { version = "0.0.4", features = ["8k"] }
uefi = { version = "0.28.0", features = ["global_allocator", "panic_handler", "alloc"] }
uefi-graphics2 = "0.1.3"