1[package]
2name = "memmap2"
3version = "0.9.4"
4authors = ["Dan Burkert <dan@danburkert.com>", "Yevhenii Reizner <razrfalcon@gmail.com>"]
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/RazrFalcon/memmap2-rs"
7documentation = "https://docs.rs/memmap2"
8description = "Cross-platform Rust API for memory-mapped file IO"
9keywords = ["mmap", "memory-map", "io", "file"]
10edition = "2018"
11
12[dependencies]
13stable_deref_trait = { version = "1.0", optional = true }
14
15[target.'cfg(unix)'.dependencies]
16libc = "0.2.151"
17
18[dev-dependencies]
19tempfile = "3"
20owning_ref = "0.4.1"
21