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