1# Copyright © SixtyFPS GmbH <info@slint.dev>
2# SPDX-License-Identifier: MIT
3
4[package]
5name = "todo"
6version = "1.5.1"
7authors = ["Slint Developers <info@slint.dev>"]
8edition = "2021"
9build = "build.rs"
10publish = false
11license = "MIT"
12
13[lib]
14crate-type = ["lib", "cdylib"]
15path = "lib.rs"
16name = "todo_lib"
17
18[[bin]]
19path = "main.rs"
20name = "todo"
21
22[dependencies]
23slint = { path = "../../../api/rs/slint", features = ["serde", "backend-android-activity-05"] }
24serde = { version = "1.0", features = ["derive"] }
25serde_json = "1.0"
26
27[target.'cfg(target_arch = "wasm32")'.dependencies]
28wasm-bindgen = { version = "0.2" }
29console_error_panic_hook = "0.1.5"
30
31[build-dependencies]
32slint-build = { path = "../../../api/rs/build" }
33
34
35