agnostic-lite 0.3.13

`agnostic-lite` is WASM friendly and light version of `agnostic`, for users who want to write async runtime-agnostic crate.
Documentation
[dependencies.async-io]
optional = true
version = "2"

[dependencies.async-std]
default-features = false
features = ["default", "unstable"]
optional = true
package = "feature-extension-for-async-std"
version = "0.2"

[dependencies.atomic-time]
optional = true
version = "0.1"

[dependencies.futures-util]
default-features = false
version = "=0.3.29"

[dependencies.paste]
optional = true
version = "1"

[dependencies.pin-project]
version = "1"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.smol]
default-features = false
optional = true
package = "feature-extension-for-smol"
version = "0.2"

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

[dependencies.wasm]
optional = true
package = "feature-extension-for-wasm-bindgen-futures"
version = "0.2"
[dev-dependencies.futures]
features = ["executor"]
version = "=0.3.29"

[dev-dependencies.tokio]
default-features = false
features = ["full"]
version = "1"

[features]
async-io = ["dep:async-io", "time"]
async-std = ["dep:async-std", "async-io"]
default = ["std"]
smol = ["dep:smol", "async-io"]
std = []
test = ["time"]
time = ["std", "atomic-time", "paste", "tokio?/time", "tokio?/macros", "tokio?/sync", "wasm?/time", "wasm?/channel", "smol?/time", "smol?/channel", "async-std?/time", "async-std?/channel"]
tokio = ["dep:tokio"]
wasm = ["std", "dep:wasm", "wasm/channel", "futures-util/async-await-macro", "futures-util/async-await", "futures-util/std"]

[package]
categories = ["asynchronous", "no-std"]
description = "`agnostic-lite` is WASM friendly and light version of `agnostic`, for users who want to write async runtime-agnostic crate."
documentation = "https://docs.rs/agnostic-lite"
edition = "2021"
homepage = "https://github.com/al8n/agnostic"
keywords = ["async", "runtime", "agnostic", "trait"]
license = "MIT/Apache-2.0"
name = "agnostic-lite"
readme = "README.md"
repository = "https://github.com/al8n/agnostic"
rust-version = "1.75.0"
version = "0.3.13"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]