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