2020-01-19 10:17:08 +01:00
|
|
|
[package]
|
|
|
|
|
name = "iced_futures"
|
2023-09-04 12:58:41 +02:00
|
|
|
description = "Commands, subscriptions, and future executors for iced"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
categories.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
|
2024-04-07 12:42:12 +02:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
all-features = true
|
2020-01-19 10:17:08 +01:00
|
|
|
|
2020-01-19 11:08:47 +01:00
|
|
|
[features]
|
|
|
|
|
thread-pool = ["futures/thread-pool"]
|
|
|
|
|
|
2020-01-19 10:17:08 +01:00
|
|
|
[dependencies]
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_core.workspace = true
|
2023-03-05 04:15:10 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
futures.workspace = true
|
2025-04-02 11:50:27 +02:00
|
|
|
futures.features = ["std", "async-await"]
|
2025-04-02 10:39:27 +02:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
log.workspace = true
|
2024-04-01 11:59:46 +02:00
|
|
|
rustc-hash.workspace = true
|
2020-01-19 10:17:08 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
|
smol.workspace = true
|
|
|
|
|
smol.optional = true
|
2020-01-20 05:43:09 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
tokio.workspace = true
|
|
|
|
|
tokio.optional = true
|
|
|
|
|
tokio.features = ["rt", "rt-multi-thread", "time"]
|
2021-01-13 01:48:35 +01:00
|
|
|
|
2020-01-20 05:43:09 +01:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2023-09-04 12:58:41 +02:00
|
|
|
wasm-bindgen-futures.workspace = true
|
2025-02-02 22:44:05 -03:00
|
|
|
wasmtimer.workspace = true
|