mmap-sync 2.0.0

A Rust package allowing sharing of data between processes in a wait-free and zero-copy fashion from mapped memory.
Documentation
[[bench]]
harness = false
name = "synchronizer"
path = "benches/synchronizer.rs"

[dependencies.bytecheck]
default-features = false
version = "~0.6.8"

[dependencies.memmap2]
version = "0.9.4"

[dependencies.rkyv]
features = ["validation", "strict"]
version = "0.7.40"

[dependencies.thiserror]
version = "1.0.30"

[dependencies.wyhash]
version = "0.5.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"

[dev-dependencies.pprof]
features = ["flamegraph", "protobuf-codec", "criterion"]
version = "0.13.0"

[dev-dependencies.proptest]
version = "1.0.0"

[dev-dependencies.rand]
version = "0.8.5"

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

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

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

[package]
authors = ["Alex Bocharov <bocharov.alexandr@gmail.com>", "Austin Hartzheim <ahartzheim@cloudflare.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["os", "filesystem", "concurrency", "data-structures", "memory-management"]
description = "A Rust package allowing sharing of data between processes in a wait-free and zero-copy fashion from mapped memory."
edition = "2021"
keywords = ["memory-mapping", "synchronization", "interprocess", "wait-free", "zero-copy"]
license = "Apache-2.0"
name = "mmap-sync"
readme = "README.md"
repository = "https://github.com/cloudflare/mmap-sync"
version = "2.0.0"

[package.metadata.docs.rs]
all-features = true

[target."cfg(unix)".dependencies.libc]
version = "0.2.0"