iced-yoda/examples/todos/Cargo.toml

27 lines
702 B
TOML
Raw Normal View History

[package]
name = "todos"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2022-02-09 17:53:35 +07:00
edition = "2021"
publish = false
[dependencies]
2020-05-21 00:37:47 +02:00
iced = { path = "../..", features = ["async-std", "debug"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
once_cell = "1.15"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
async-std = "1.0"
directories-next = "2.0"
2020-01-21 00:37:57 +01:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features = ["Window", "Storage"] }
wasm-timer = "0.2"
2020-01-21 00:37:57 +01:00
[package.metadata.deb]
assets = [
["target/release-opt/todos", "usr/bin/iced-todos", "755"],
2020-01-21 00:37:57 +01:00
["iced-todos.desktop", "usr/share/applications/", "644"],
]