-
Notifications
You must be signed in to change notification settings - Fork 606
/
Cargo.toml
31 lines (26 loc) · 895 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright © SixtyFPS GmbH <info@slint.dev>
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
[package]
name = "slint-updater"
description = "Tool used to update .slint files from previous versions"
authors.workspace = true
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
categories = ["gui", "development-tools", "command-line-utilities"]
[dependencies]
i-slint-compiler = { workspace = true, features = ["default", "display-diagnostics"] }
clap = { workspace = true }
codemap = "0.1"
codemap-diagnostic = "0.1.1"
spin_on = { workspace = true }
by_address = { workspace = true }
smol_str = { workspace = true }
[[bin]]
name = "slint-updater"
path = "main.rs"