| 1 | # Copyright © SixtyFPS GmbH <info@slint.dev> |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | |
| 4 | [package] |
| 5 | name = "printerdemo_mcu" |
| 6 | version = "1.11.0" |
| 7 | authors = ["Slint Developers <info@slint.dev>" ] |
| 8 | edition = "2021" |
| 9 | build = "build.rs" |
| 10 | publish = false |
| 11 | license = "MIT" |
| 12 | |
| 13 | [[bin]] |
| 14 | path = "main.rs" |
| 15 | name = "printerdemo_mcu" |
| 16 | |
| 17 | [features] |
| 18 | simulator = ["slint/renderer-software" , "slint/backend-winit" , "slint/std" ] |
| 19 | default = ["simulator" ] |
| 20 | |
| 21 | [dependencies] |
| 22 | slint = { path = "../../api/rs/slint" , default-features = false, features = ["compat-1-2" ] } |
| 23 | mcu-board-support = { path = "../../examples/mcu-board-support" } |
| 24 | |
| 25 | [build-dependencies] |
| 26 | slint-build = { path = "../../api/rs/build" } |
| 27 | |
| 28 | [dev-dependencies] |
| 29 | divan = "0.1.14" |
| 30 | |
| 31 | [[bench]] |
| 32 | name = "bench" |
| 33 | path = "bench.rs" |
| 34 | harness = false |
| 35 | |