1 | # Copyright © SixtyFPS GmbH <info@slint.dev> |
2 | # SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
3 | |
4 | [package] |
5 | name = "test_driver_lib" |
6 | description = "Internal rust test driver" |
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 | [lib] |
17 | path = "lib.rs" |
18 | |
19 | [dependencies] |
20 | regex = "1.4" |
21 | lazy_static = "1" |
22 | walkdir = "2" |
23 | |