n0-future 0.0.1

Number 0's way of doing rust futures. Re-exports what we think are useful abstractions and good implementations.
Documentation
[build-dependencies.cfg_aliases]
version = "0.2"

[dependencies.derive_more]
features = ["debug", "display"]
version = "1"

[dependencies.futures-buffered]
version = "0.2.8"

[dependencies.futures-lite]
version = "2.5"

[dependencies.futures-sink]
version = "0.3"

[dependencies.futures-util]
features = ["sink"]
version = "0.3"

[dependencies.tokio]
features = []
version = "1"

[dependencies.tokio-util]
features = []
version = "0.7"

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

[lints.clippy]
unused-async = "warn"

[lints.rust]
missing_debug_implementations = "warn"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(n0_future_docsrs)"]
level = "warn"
priority = 0

[package]
authors = ["Philipp Krüger <philipp@n0.computer>", "n0 team"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
description = "Number 0's way of doing rust futures. Re-exports what we think are useful abstractions and good implementations."
edition = "2021"
keywords = ["wasm", "io", "stream", "sink", "runtime"]
license = "MIT OR Apache-2.0"
name = "n0-future"
readme = "README.md"
repository = "https://github.com/n0-computer/n0-future"
version = "0.0.1"

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.futures-util]
version = "0.3"

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.js-sys]
version = "0.3"

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.pin-project]
version = "1"

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.send_wrapper]
version = "0.6"

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.wasm-bindgen]
version = "0.2"

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.wasm-bindgen-futures]
version = "0.4"

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.web-time]
version = "1"

[target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dependencies.tokio]
features = ["rt", "time"]
version = "1"

[target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dependencies.tokio-util]
features = ["rt"]
version = "0.7"