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-updater" |
6 | description = "Tool used to update .slint files from previous versions" |
7 | authors.workspace = true |
8 | documentation.workspace = true |
9 | edition.workspace = true |
10 | homepage.workspace = true |
11 | keywords.workspace = true |
12 | license.workspace = true |
13 | repository.workspace = true |
14 | rust-version.workspace = true |
15 | version.workspace = true |
16 | categories = ["gui" , "development-tools" , "command-line-utilities" ] |
17 | |
18 | |
19 | [dependencies] |
20 | i-slint-compiler = { workspace = true, features = ["default" , "display-diagnostics" ] } |
21 | |
22 | clap = { version = "4.0" , features = ["derive" , "wrap_help" ] } |
23 | codemap = "0.1" |
24 | codemap-diagnostic = "0.1.1" |
25 | spin_on = "0.1" |
26 | by_address = "1.0.4" |
27 | |
28 | [[bin]] |
29 | name = "slint-updater" |
30 | path = "main.rs" |
31 | |