[package]
edition = "2024"
rust-version = "1.95"
name = "o3"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "shared-nothing primitives"
readme = "README.md"
keywords = [
"bytes",
"buffer",
"single-threaded",
"no-share",
"zero-copy",
]
categories = [
"data-structures",
"memory-management",
]
license = "MIT"
[lib]
name = "o3"
path = "src/lib.rs"
[[test]]
name = "accum"
path = "tests/accum.rs"
[[test]]
name = "batch"
path = "tests/batch.rs"
[[test]]
name = "hardening"
path = "tests/hardening.rs"
[[test]]
name = "late_bound"
path = "tests/late_bound.rs"
[[test]]
name = "owned"
path = "tests/owned.rs"
[[test]]
name = "rolling"
path = "tests/rolling.rs"
[[test]]
name = "slab"
path = "tests/slab.rs"
[[test]]
name = "waker_set"
path = "tests/waker_set.rs"
[dependencies.libc]
version = "0.2"