2020-01-19 10:17:08 +01:00
|
|
|
[package]
|
|
|
|
|
name = "iced_futures"
|
2022-05-31 05:40:39 +02:00
|
|
|
version = "0.4.1"
|
2020-01-19 10:17:08 +01:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2022-02-09 17:53:35 +07:00
|
|
|
edition = "2021"
|
2020-01-19 10:17:08 +01:00
|
|
|
description = "Commands, subscriptions, and runtimes for Iced"
|
|
|
|
|
license = "MIT"
|
2021-12-23 09:34:37 +02:00
|
|
|
repository = "https://github.com/iced-rs/iced"
|
2020-01-19 10:17:08 +01:00
|
|
|
documentation = "https://docs.rs/iced_futures"
|
|
|
|
|
keywords = ["gui", "ui", "graphics", "interface", "futures"]
|
|
|
|
|
categories = ["gui"]
|
|
|
|
|
|
2020-01-19 11:08:47 +01:00
|
|
|
[features]
|
|
|
|
|
thread-pool = ["futures/thread-pool"]
|
|
|
|
|
|
2020-01-19 10:17:08 +01:00
|
|
|
[dependencies]
|
|
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
|
|
[dependencies.futures]
|
|
|
|
|
version = "0.3"
|
|
|
|
|
|
2020-02-05 01:40:27 +01:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
2021-01-04 22:58:39 +03:00
|
|
|
package = "tokio"
|
|
|
|
|
version = "1.0"
|
2020-01-19 10:17:08 +01:00
|
|
|
optional = true
|
2021-01-04 22:58:39 +03:00
|
|
|
features = ["rt", "rt-multi-thread", "time"]
|
2020-01-20 04:47:36 +01:00
|
|
|
|
2020-02-05 01:40:27 +01:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.async-std]
|
2020-01-20 04:47:36 +01:00
|
|
|
version = "1.0"
|
|
|
|
|
optional = true
|
2020-04-30 05:37:44 +02:00
|
|
|
features = ["unstable"]
|
2020-01-20 05:43:09 +01:00
|
|
|
|
2021-01-13 01:48:35 +01:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.smol]
|
2021-01-15 18:52:12 +01:00
|
|
|
version = "1.2"
|
2021-01-13 01:48:35 +01:00
|
|
|
optional = true
|
|
|
|
|
|
2020-01-20 05:43:09 +01:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
|
wasm-bindgen-futures = "0.4"
|
2022-01-28 18:43:20 +07:00
|
|
|
wasm-timer = "0.2"
|
2020-04-05 04:52:03 +02:00
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
all-features = true
|