17 lines
474 B
TOML
17 lines
474 B
TOML
|
[package]
|
||
|
name = "memmap2"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Dan Burkert <dan@danburkert.com>", "Evgeniy Reizner <razrfalcon@gmail.com>"]
|
||
|
license = "MIT/Apache-2.0"
|
||
|
repository = "https://github.com/RazrFalcon/memmap2-rs"
|
||
|
documentation = "https://docs.rs/memmap2"
|
||
|
description = "Cross-platform Rust API for memory-mapped file IO"
|
||
|
keywords = ["mmap", "memory-map", "io", "file"]
|
||
|
edition = "2018"
|
||
|
|
||
|
[target.'cfg(unix)'.dependencies]
|
||
|
libc = "0.2"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
tempdir = "0.3"
|