[package]
edition = "2024"
name = "orb-tokio"
version = "0.6.0"
authors = ["plan <frostyplanet@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
orb interface adaptor for tokio ecology.
Orb is an abstraction for writing runtime agnostic async code.
"""
documentation = "https://docs.rs/orb-tokio"
readme = "README.md"
keywords = [
"networking",
"async",
"io",
"runtime",
]
categories = [
"concurrency",
"network-programming",
]
license = "MIT"
repository = "https://github.com/NaturalIO/orb"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "orb_tokio"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "net"
path = "tests/net.rs"
[dependencies.orb]
version = ">=0.6"
[dependencies.tokio]
version = "1"
features = [
"net",
"time",
"rt",
"rt-multi-thread",
]
[dev-dependencies.rstest]
version = "0"