[package]
edition = "2024"
rust-version = "1.96"
name = "subetha-pointers"
version = "0.1.9"
authors = ["Markus Newton"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exotic pointer types for the CXC / SubEtha IPC stack: content-prefix (Umbra), bloom-filtered, log2-strided, multi-segment, type-tagged, versioned, cardinality-tagged, and CHERI-style bounds-checked. All declare a `K_*` direction signature via `subetha-core::AxisMask`."
readme = "README.md"
keywords = [
"ipc",
"shared-memory",
"mmf",
"cross-process",
"kernel-bypass",
]
categories = [
"concurrency",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/Variably-Constant/SubEtha"
resolver = "2"
[lib]
name = "subetha_pointers"
path = "src/lib.rs"
[[bench]]
name = "bitsteal_pointers"
path = "benches/bitsteal_pointers.rs"
harness = false
[[bench]]
name = "hybrid_pointers"
path = "benches/hybrid_pointers.rs"
harness = false
[[bench]]
name = "umbra_pointer"
path = "benches/umbra_pointer.rs"
harness = false
[[bench]]
name = "unified"
path = "benches/unified.rs"
harness = false
[[bench]]
name = "versioned_bloom"
path = "benches/versioned_bloom.rs"
harness = false
[dependencies.parking_lot]
version = "0.12"
[dependencies.subetha-core]
version = "0.1.9"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]