-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
37 lines (32 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "mmap-sync"
version = "2.0.1"
edition = "2021"
authors = [
"Alex Bocharov <[email protected]>",
"Austin Hartzheim <[email protected]>",
]
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.9.4"
rkyv = { version = "0.7.40", features = ["validation", "strict"] }
thiserror = "1.0.30"
wyhash = "0.5.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
pprof = { version = "0.13.0", features = ["flamegraph", "protobuf-codec", "criterion"] }
proptest = "1.0.0"
rand = "0.8.5"
[[bench]]
name = "synchronizer"
harness = false
[package.metadata.docs.rs]
all-features = true