2020-01-20 06:27:01 +01:00
|
|
|
[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"
|
2020-01-20 06:27:01 +01:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-04 12:58:41 +02:00
|
|
|
iced.workspace = true
|
|
|
|
|
iced.features = ["async-std", "debug"]
|
|
|
|
|
|
2020-01-20 06:27:01 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
2023-09-10 00:34:21 +02:00
|
|
|
uuid = { version = "1.0", features = ["v4", "fast-rng", "serde"] }
|
2020-02-06 03:06:39 +01:00
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2023-09-04 12:58:41 +02:00
|
|
|
async-std.workspace = true
|
2025-01-29 00:45:14 +09:00
|
|
|
directories = "6.0"
|
2023-09-10 00:34:21 +02:00
|
|
|
tracing-subscriber = "0.3"
|
2020-01-21 00:37:57 +01:00
|
|
|
|
2020-02-06 05:56:23 +01:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2023-09-09 13:59:18 +02:00
|
|
|
iced.workspace = true
|
2024-12-12 03:14:40 +01:00
|
|
|
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"] }
|
2023-09-04 12:58:41 +02:00
|
|
|
web-sys = { workspace = true, features = ["Window", "Storage"] }
|
2025-02-02 22:44:05 -03:00
|
|
|
wasmtimer.workspace = true
|
2020-02-06 05:56:23 +01:00
|
|
|
|
2024-12-03 22:03:06 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
|
iced_test.workspace = true
|
|
|
|
|
|
2020-01-21 00:37:57 +01:00
|
|
|
[package.metadata.deb]
|
|
|
|
|
assets = [
|
2022-07-14 18:29:40 +02:00
|
|
|
["target/release-opt/todos", "usr/bin/iced-todos", "755"],
|
2020-01-21 00:37:57 +01:00
|
|
|
["iced-todos.desktop", "usr/share/applications/", "644"],
|
|
|
|
|
]
|