mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-21 07:41:51 +00:00
24 lines
624 B
TOML
24 lines
624 B
TOML
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
[package]
|
|
name = "uefi-demo"
|
|
version = "1.14.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
build = "build.rs"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
path = "main.rs"
|
|
name = "uefi-demo"
|
|
|
|
[target.'cfg(target_os = "uefi")'.dependencies]
|
|
uefi = { version = "0.33", features = ["panic_handler", "global_allocator"] }
|
|
minipng = "=0.1.1"
|
|
|
|
slint = { path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software", "libm", "log", "unsafe-single-threaded"] }
|
|
log = "0.4.21"
|
|
|
|
[build-dependencies]
|
|
slint-build = { path = "../../api/rs/build" }
|