[package]
edition = "2021"
name = "shaq"
version = "3.0.0"
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
build = false
include = [
"src/*.rs",
"Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SPSC FIFO queue backed by shared memory for IPC"
homepage = "https://anza.xyz/"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/anza-xyz/shaq"
[lib]
name = "shaq"
path = "src/lib.rs"
[dev-dependencies.core_affinity]
version = "0.8.3"
[dev-dependencies.ctrlc]
version = "3.5.1"
[target."cfg(unix)".dependencies.libc]
version = "0.2.180"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Memory",
]