forked from cloudflare/mmap-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
22 lines (20 loc) · 787 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "mmap-sync"
version = "1.0.2"
edition = "2021"
authors = ["Alex Bocharov <bocharov.alexandr@gmail.com>"]
description = "A Rust package allowing sharing of data between processes in a wait-free and zero-copy fashion from mapped memory."
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/cloudflare/mmap-sync"
keywords = ["memory-mapping", "synchronization", "interprocess", "wait-free", "zero-copy"]
categories = ["os", "filesystem", "concurrency", "data-structures", "memory-management"]
[dependencies]
bytecheck = { version = "~0.6.8", default-features = false }
memmap2 = "0.7.0"
rkyv = { version = "0.7.40", features = ["validation", "strict"] }
seahash = "4.1.0"
thiserror = "1.0.30"
[dev-dependencies]
proptest = "1.0.0"
rand = "0.8.5"