1 | # Copyright © SixtyFPS GmbH <info@slint.dev> |
2 | # SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
3 | |
4 | [package] |
5 | name = "slint-build" |
6 | description = "Helper for Slint build script" |
7 | authors.workspace = true |
8 | edition.workspace = true |
9 | homepage = "https://slint.rs" |
10 | keywords.workspace = true |
11 | license.workspace = true |
12 | repository.workspace = true |
13 | rust-version.workspace = true |
14 | version.workspace = true |
15 | categories = ["gui" , "rendering::engine" , "development-tools::build-utils" ] |
16 | |
17 | [lib] |
18 | path = "lib.rs" |
19 | |
20 | [features] |
21 | default = [] |
22 | |
23 | [dependencies] |
24 | i-slint-compiler = { workspace = true, features = ["default" , "rust" , "display-diagnostics" , "software-renderer" ] } |
25 | |
26 | spin_on = "0.1" |
27 | thiserror = "1" |
28 | toml_edit = { workspace = true } |
29 | |