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