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