iced-yoda/examples/todos/Cargo.toml

41 lines
1 KiB
TOML
Raw Normal View History

[package]
name = "todos"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2025-02-21 01:28:47 +01:00
edition = "2024"
publish = false
[features]
tester = ["iced/tester"]
[dependencies]
iced.workspace = true
iced.features = ["tokio", "debug", "time-travel"]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4", "fast-rng", "serde"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2025-04-02 10:45:27 +02:00
tokio.workspace = true
tokio.features = ["fs", "time"]
directories = "6.0"
tracing-subscriber = "0.3"
2020-01-21 00:37:57 +01:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
2023-09-09 13:59:18 +02:00
iced.workspace = true
iced.features = ["debug", "webgl", "fira-sans"]
2023-09-09 13:59:18 +02:00
2023-09-04 03:02:46 +02:00
uuid = { version = "1.0", features = ["js"] }
web-sys = { workspace = true, features = ["Window", "Storage"] }
2025-02-02 22:44:05 -03:00
wasmtimer.workspace = true
[dev-dependencies]
iced_test.workspace = true
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"],
]