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-compiler" |
6 | description = "Slint compiler binary" |
7 | authors.workspace = true |
8 | edition.workspace = true |
9 | homepage.workspace = true |
10 | license.workspace = true |
11 | repository.workspace = true |
12 | rust-version.workspace = true |
13 | version.workspace = true |
14 | publish = false |
15 | |
16 | [[bin]] |
17 | name = "slint-compiler" |
18 | path = "main.rs" |
19 | |
20 | [features] |
21 | software-renderer = ["i-slint-compiler/software-renderer" ] |
22 | |
23 | default = ["software-renderer" ] |
24 | |
25 | [dependencies] |
26 | i-slint-compiler = { workspace = true, features = ["default" , "display-diagnostics" , "cpp" , "rust" ]} |
27 | |
28 | clap = { version = "4.0" , features = ["derive" , "wrap_help" ] } |
29 | proc-macro2 = "1.0.11" |
30 | spin_on = "0.1" |
31 | itertools = { workspace = true } |
32 | |