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