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-screenshots"
6description = "Driver for the tests taking screenshots 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-screenshot"
19
20[dependencies]
21slint = { workspace = true, features = ["std", "compat-1-2"] }
22i-slint-core = { workspace = true, features = ["default", "software-renderer"] }
23i-slint-backend-testing = { workspace = true }
24image = { workspace = true }
25crossterm = "0.29"
26
27[build-dependencies]
28i-slint-compiler = { workspace = true, features = ["default", "rust", "display-diagnostics", "software-renderer"] }
29walkdir = "2.3"
30spin_on = { workspace = true }
31test_driver_lib = { path = "../driver/driverlib" }
32