[package]
edition = "2024"
name = "orb-smol"
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 smol-rs ecology.
Orb is an abstraction for writing runtime agnostic async code.
"""
documentation = "https://docs.rs/orb_smol"
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",
]
[features]
global = ["dep:smol"]
unwind = []
[lib]
name = "orb_smol"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "net"
path = "tests/net.rs"
[dependencies.async-executor]
version = "1"
[dependencies.async-io]
version = "2.6"
[dependencies.blocking]
version = "1.6"
[dependencies.futures-lite]
version = "2.6"
[dependencies.orb]
version = ">=0.6"
[dependencies.smol]
version = "2"
optional = true
[dev-dependencies.rstest]
version = "0"