| 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-nodejs" |
| 6 | authors.workspace = true |
| 7 | edition.workspace = true |
| 8 | homepage.workspace = true |
| 9 | license.workspace = true |
| 10 | repository.workspace = true |
| 11 | rust-version.workspace = true |
| 12 | version.workspace = true |
| 13 | publish = false |
| 14 | |
| 15 | [[bin]] |
| 16 | path = "main.rs" |
| 17 | name = "test-driver-nodejs" |
| 18 | |
| 19 | [dev-dependencies] |
| 20 | test_driver_lib = { path = "../driverlib" } |
| 21 | # Require `artifact` dependencies tracked by rust RFC 3028 |
| 22 | #slint-node = { path = "../../../api/node", artifact = ["cdylib"] } |
| 23 | lazy_static = "1.4.0" |
| 24 | which = "7.0" |
| 25 | tempfile = "3.2" |
| 26 | |
| 27 | [build-dependencies] |
| 28 | test_driver_lib = { path = "../driverlib" } |
| 29 | |