| 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 = "test-driver-cpp" |
| 6 | description = "Driver for the C++-based tests in Slint" |
| 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 | [[bin]] |
| 17 | path = "main.rs" |
| 18 | name = "test-driver-cpp" |
| 19 | |
| 20 | [dependencies] |
| 21 | slint-cpp = { workspace = true, features = ["testing" , "std" , "experimental" ] } |
| 22 | |
| 23 | [dev-dependencies] |
| 24 | i-slint-compiler = { workspace = true, features = ["default" , "cpp" , "display-diagnostics" , "bundle-translations" ] } |
| 25 | |
| 26 | cc = "1.0.54" |
| 27 | scopeguard = "1.1.0" |
| 28 | spin_on = { workspace = true } |
| 29 | tempfile = "3" |
| 30 | test_driver_lib = { path = "../driverlib" } |
| 31 | |
| 32 | [build-dependencies] |
| 33 | test_driver_lib = { path = "../driverlib" } |
| 34 | |