ipc-ring48 1.0.1

A bounded 48-byte POSIX shared-memory SPSC queue for Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

[lib]
name = "ipc_ring48"
path = "src/lib.rs"

[[bin]]
name = "ipc-ring48"
path = "src/main.rs"

[[example]]
name = "consumer"
path = "examples/consumer.rs"

[[example]]
name = "fill_drain"
path = "examples/fill_drain.rs"

[[example]]
name = "producer"
path = "examples/producer.rs"

[[test]]
name = "cli"
path = "tests/cli.rs"

[[bench]]
name = "ipc_ring48"
path = "benches/ipc_ring48.rs"
harness = false

[dependencies.libc]
version = "0.2"

[dev-dependencies.criterion]
version = "0.5"

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