iced_futures 0.14.0

Commands, subscriptions, and future executors for iced
Documentation
[dependencies.futures]
default-features = false
features = ["std", "async-await"]
version = "0.3"

[dependencies.iced_core]
version = "0.14.0"

[dependencies.log]
version = "0.4"

[dependencies.rustc-hash]
version = "2.0"

[features]
thread-pool = ["futures/thread-pool"]

[lib]
name = "iced_futures"
path = "src/lib.rs"

[lints.clippy]
default_trait_access = "deny"
filter_map_next = "deny"
from_over_into = "deny"
large-enum-variant = "allow"
manual_let_else = "deny"
map-entry = "allow"
match-wildcard-for-single-variants = "deny"
needless_borrow = "deny"
new_without_default = "deny"
redundant-closure-for-method-calls = "deny"
result_large_err = "allow"
semicolon_if_nothing_returned = "deny"
trivially-copy-pass-by-ref = "deny"
type-complexity = "allow"
unused_async = "deny"
useless_conversion = "deny"

[lints.rust]
missing_docs = "deny"
unsafe_code = "deny"
unused_results = "deny"

[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1

[lints.rustdoc]
broken_intra_doc_links = "forbid"

[package]
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["gui"]
description = "Commands, subscriptions, and future executors for iced"
edition = "2024"
homepage = "https://iced.rs"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
license = "MIT"
name = "iced_futures"
readme = false
repository = "https://github.com/iced-rs/iced"
version = "0.14.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.smol]
optional = true
version = "2"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
features = ["rt", "rt-multi-thread", "time"]
optional = true
version = "1.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
version = "0.4"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasmtimer]
version = "0.4.2"