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