1# Copyright © SixtyFPS GmbH <info@slint.dev>
2# SPDX-License-Identifier: MIT
3
4[package]
5name = "printerdemo_old"
6version = "1.5.1"
7authors = ["Slint Developers <info@slint.dev>"]
8edition = "2021"
9build = "build.rs"
10publish = false
11license = "MIT"
12
13[[bin]]
14path = "main.rs"
15name = "printerdemo_old"
16
17[dependencies]
18slint = { path = "../../../api/rs/slint" }
19
20[build-dependencies]
21slint-build = { path = "../../../api/rs/build" }
22
23# Remove the `#wasm#` to uncomment the wasm build.
24# This is commented out by default because we don't want to build it as a library by default
25# The CI has a script that does sed "s/#wasm# //" to generate the wasm build.
26
27#wasm# [lib]
28#wasm# path = "main.rs"
29#wasm# crate-type = ["cdylib"]
30
31#wasm# [target.'cfg(target_arch = "wasm32")'.dependencies]
32#wasm# wasm-bindgen = { version = "0.2" }
33#wasm# web-sys = { version = "0.3", features=["console"] }
34#wasm# console_error_panic_hook = "0.1.5"
35