forked from slint-ui/slint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (21 loc) · 840 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
# Copyright © SixtyFPS GmbH <[email protected]>
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial
[package]
name = "slint-updater"
version = "1.1.0"
authors = ["Slint Developers <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
description = "Tool used to update .slint files from previous versions"
repository = "https://github.com/slint-ui/slint"
homepage = "https://slint.dev"
[dependencies]
i-slint-compiler = { version = "=1.1.0", path = "../../internal/compiler", features = ["display-diagnostics"] }
clap = { version = "4.0", features = ["derive", "wrap_help"] }
codemap = "0.1"
codemap-diagnostic = "0.1.1"
spin_on = "0.1"
by_address = "1.0.4"
[[bin]]
name = "slint-updater"
path = "main.rs"