# Copyright © SixtyFPS GmbH # SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 [package] name = "test-driver-rust" description = "Driver for the rust-based tests in Slint" authors.workspace = true edition.workspace = true homepage.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true version.workspace = true publish = false [[bin]] path = "main.rs" name = "test-driver-rust" [features] build-time = ["i-slint-compiler", "spin_on"] [dependencies] slint = { workspace = true, features = ["std", "compat-1-2"] } i-slint-backend-testing = { workspace = true, features = ["internal"] } slint-interpreter = { workspace = true, features = ["std", "compat-1-2", "internal"] } spin_on = { workspace = true } [build-dependencies] i-slint-compiler = { workspace = true, features = ["default", "rust", "display-diagnostics", "bundle-translations"], optional = true } spin_on = { workspace = true, optional = true } test_driver_lib = { path = "../driverlib" }