mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-22 16:22:17 +00:00

Commit cd6f2e2
reformated the .toml, but the 80 char width column is
judged too small to be practical
Add a .taplo.toml file
Also do not split feature array
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# 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" }
|