| 1 | # Copyright © SixtyFPS GmbH <info@slint.dev> |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | |
| 4 | [package] |
| 5 | name = "uefi-demo" |
| 6 | version = "1.11.0" |
| 7 | edition = "2021" |
| 8 | license = "MIT" |
| 9 | build = "build.rs" |
| 10 | publish = false |
| 11 | |
| 12 | [[bin]] |
| 13 | path = "main.rs" |
| 14 | name = "uefi-demo" |
| 15 | |
| 16 | [target.'cfg(target_os = "uefi")'.dependencies] |
| 17 | uefi = { version = "0.33" , features = ["panic_handler" , "global_allocator" ] } |
| 18 | minipng = "=0.1.1" |
| 19 | |
| 20 | slint = { path = "../../api/rs/slint" , default-features = false, features = ["compat-1-2" , "renderer-software" , "libm" , "log" , "unsafe-single-threaded" ] } |
| 21 | log = "0.4.21" |
| 22 | |
| 23 | [build-dependencies] |
| 24 | slint-build = { path = "../../api/rs/build" } |
| 25 | |