| [package] |
| name = "efilite" |
| version = "0.1.0" |
| edition = "2021" |
| |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| |
| [dependencies] |
| linked_list_allocator = "0.10.5" |
| log = "0.4.14" |
| mmio = "2.1.0" |
| fdt = "0.1.5" |
| bitflags = "1.3" |
| const-utf16 = "0.2.1" |
| aarch64-intrinsics = { git = "https://github.com/ardbiesheuvel/aarch64-intrinsics" } |
| spinning_top = "0.2.5" |
| once_cell = { version = "1.18.0", default-features = false, features = ["race", "alloc"] } |
| |
| [profile.dev] |
| panic = "abort" |
| |
| [profile.release] |
| panic = "abort" |
| #lto = true # breaks BTI |