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-macros" |
6 | description = "Macro helper for slint crate" |
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" , "development-tools" ] |
16 | |
17 | [lib] |
18 | proc-macro = true |
19 | path = "lib.rs" |
20 | |
21 | [features] |
22 | default = [] |
23 | |
24 | [dependencies] |
25 | i-slint-compiler = { workspace = true, features = ["default" , "proc_macro_span" , "rust" , "display-diagnostics" ] } |
26 | |
27 | proc-macro2 = "1.0.17" |
28 | quote = "1.0" |
29 | spin_on = "0.1" |
30 | |