shm-primitives 0.6.0

Lock-free primitives for shared memory IPC: SPSC ring buffers and Treiber stack slab allocators
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"
rust-version = "1.91"
name = "shm-primitives"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free primitives for shared memory IPC: SPSC ring buffers and Treiber stack slab allocators"
readme = "README.md"
keywords = [
    "lock-free",
    "shared-memory",
    "ipc",
    "ring-buffer",
]
categories = [
    "concurrency",
    "memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/roam"
resolver = "2"

[package.metadata."docs.rs"]
rustdoc-args = [
    "--html-in-header",
    "arborium-header.html",
]

[features]
default = []

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

[dependencies.libc]
version = "0.2.180"

[dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt",
    "time",
    "macros",
    "io-util",
    "rt",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tempfile]
version = "3"

[target."cfg(loom)".dependencies.loom]
version = "0.7"

[target."cfg(unix)".dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt",
    "time",
    "macros",
    "io-util",
    "net",
    "rt",
]

[target."cfg(windows)".dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt",
    "time",
    "macros",
    "io-util",
    "net",
    "rt",
]

[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
    "Win32_Foundation",
    "Win32_System_Memory",
    "Win32_Storage_FileSystem",
    "Win32_Security",
    "Win32_System_IO",
    "Win32_System_Pipes",
    "Win32_System_Threading",
]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]