1# Copyright © SixtyFPS GmbH <info@slint.dev>
2# SPDX-License-Identifier: MIT
3
4[package]
5name = "memory"
6version = "1.5.1"
7authors = ["Slint Developers <info@slint.dev>"]
8edition = "2021"
9publish = false
10license = "MIT"
11
12[[bin]]
13path = "main.rs"
14name = "memory"
15
16[dependencies]
17rand = "0.8"
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#wasm# getrandom = { version = "0.2.2", features = ["js"] }
36