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-tr-extractor" |
6 | description = "Tool used to update extract @tr string out of Slint files into gettext .po file" |
7 | authors.workspace = true |
8 | edition.workspace = true |
9 | homepage.workspace = true |
10 | keywords.workspace = true |
11 | license.workspace = true |
12 | repository.workspace = true |
13 | rust-version.workspace = true |
14 | version.workspace = true |
15 | categories = [ "gui" , "command-line-utilities" , "development-tools" ] |
16 | |
17 | [dependencies] |
18 | i-slint-compiler = { workspace = true, features = ["default" , "display-diagnostics" ] } |
19 | chrono = {version = "0.4.24" , default-features = false, features = ["clock" ] } |
20 | clap = { version = "4.0" , features = ["derive" , "wrap_help" ] } |
21 | polib = "0.2" |
22 | |
23 | [dev-dependencies] |
24 | itertools = { workspace = true } |
25 | |
26 | [[bin]] |
27 | name = "slint-tr-extractor" |
28 | path = "main.rs" |
29 | |