iced-yoda/futures/Cargo.toml

44 lines
1 KiB
TOML
Raw Normal View History

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