[package]
edition = "2024"
name = "orb"
version = "0.6.0"
authors = ["plan <frostyplanet@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
An abstraction for writing runtime agnostic async code.
Orb provides interfaces to adapt different async runtimes like smol and tokio.
"""
documentation = "https://docs.rs/orb"
readme = "README.md"
keywords = [
"networking",
"async",
"io",
"runtime",
]
categories = [
"concurrency",
"network-programming",
]
license = "MIT"
repository = "https://github.com/NaturalIO/orb"
[lib]
name = "orb"
path = "src/lib.rs"
[[test]]
name = "buf_stream"
path = "tests/buf_stream.rs"
[[test]]
name = "unify_addr"
path = "tests/unify_addr.rs"
[dependencies.futures-lite]
version = "2.6"
[dependencies.pin-project-lite]
version = "0.2"
[dev-dependencies.async-executor]
version = "1"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]