| 1 | # Copyright © SixtyFPS GmbH <info@slint.dev> |
| 2 | # SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 |
| 3 | |
| 4 | [package] |
| 5 | name = "xtask" |
| 6 | description = "Development helper tool for the Slint project" |
| 7 | authors.workspace = true |
| 8 | edition.workspace = true |
| 9 | homepage.workspace = true |
| 10 | license.workspace = true |
| 11 | repository.workspace = true |
| 12 | rust-version.workspace = true |
| 13 | version.workspace = true |
| 14 | publish = false |
| 15 | |
| 16 | [dependencies] |
| 17 | anyhow = "1.0" |
| 18 | cbindgen = { workspace = true } |
| 19 | clap = { workspace = true } |
| 20 | const_format = "0.2" |
| 21 | i-slint-common = { workspace = true, features = ["default" ] } |
| 22 | lazy_static = "1.4.0" |
| 23 | proc-macro2 = "1.0.11" |
| 24 | regex = "1.4" |
| 25 | serde_json = { workspace = true } |
| 26 | toml_edit = { workspace = true } |
| 27 | which = "7.0" |
| 28 | xshell = "0.2.1" |
| 29 | |