ipc-ring48 1.0.1

A bounded 48-byte POSIX shared-memory SPSC queue for Rust.
Documentation
[package]
name = "ipc-ring48"
version = "1.0.1"
edition = "2024"
description = "A bounded 48-byte POSIX shared-memory SPSC queue for Rust."
repository = "https://codeberg.org/BlissedEL/ipc-ring48"
readme = "README.md"
keywords = ["ipc", "shared-memory", "linux", "spsc", "queue"]
categories = ["os", "concurrency", "command-line-utilities"]
license-file = "LICENSE.md"

[dependencies]
libc = "0.2"

[dev-dependencies]
criterion = "0.5"

[[bench]]
name = "ipc_ring48"
harness = false

[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"
incremental = false
debug = false