any_spawner 0.1.1

Spawn asynchronous tasks in an executor-independent way.
[dependencies.futures]
version = "0.3"

[dependencies.glib]
optional = true
version = "0.19"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
default-features = false
features = ["rt"]
optional = true
version = "1"

[dependencies.tracing]
optional = true
version = "0.1"

[dependencies.wasm-bindgen-futures]
optional = true
version = "0.4"

[features]
futures-executor = ["futures/thread-pool", "futures/executor"]
glib = ["dep:glib"]
tokio = ["dep:tokio"]
tracing = ["dep:tracing"]
wasm-bindgen = ["dep:wasm-bindgen-futures"]

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

[package]
authors = ["Greg Johnston"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Spawn asynchronous tasks in an executor-independent way."
edition = "2021"
license = "MIT"
name = "any_spawner"
readme = "README.md"
repository = "https://github.com/leptos-rs/leptos"
version = "0.1.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]