[package]
name = "crossbar"
version = "1.1.0"
edition = "2021"
description = "Zero-copy pub/sub over shared memory. URI-addressed. O(1) transfer at any payload size."
license = "Apache-2.0"
repository = "https://github.com/userFRM/crossbar"
keywords = ["ipc", "shared-memory", "pubsub", "zero-copy", "low-latency"]
categories = ["network-programming", "concurrency"]
rust-version = "1.87"
[features]
ffi = []
[target.'cfg(unix)'.dependencies]
libc = "0.2.183"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61.2", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_IO",
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_Storage_FileSystem",
] }
[dev-dependencies]
criterion = "0.8.2"
[target.'cfg(unix)'.dev-dependencies]
iceoryx2 = "0.8.1"
[[example]]
name = "publisher"
[[example]]
name = "subscriber"
[[bench]]
name = "pubsub"
harness = false
[[bench]]
name = "pod_bus"
harness = false
[[bench]]
name = "spmc_contention"
harness = false
[[test]]
name = "ffi_smoke"
required-features = ["ffi"]