mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
33 lines
907 B
TOML
33 lines
907 B
TOML
[package]
|
|
name = "any_spawner"
|
|
version = "0.1.1"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
readme = "../README.md"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Spawn asynchronous tasks in an executor-independent way."
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.30"
|
|
glib = { version = "0.20.0", optional = true }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.39", optional = true, default-features = false, features = [
|
|
"rt",
|
|
] }
|
|
tracing = { version = "0.1.40", optional = true }
|
|
wasm-bindgen-futures = { version = "0.4.42", optional = true }
|
|
|
|
[features]
|
|
tracing = ["dep:tracing"]
|
|
tokio = ["dep:tokio"]
|
|
glib = ["dep:glib"]
|
|
wasm-bindgen = ["dep:wasm-bindgen-futures"]
|
|
futures-executor = ["futures/thread-pool", "futures/executor"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
denylist = ["tracing"]
|