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