[package]
edition = "2021"
rust-version = "1.63.0"
name = "memmapix"
version = "0.8.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Yevhenii Reizner <razrfalcon@gmail.com>",
"Al Liu <scygliu1@gmail.com>",
"The Contributors",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust library for cross-platform memory mapped IO, which replaces libc with rustix"
documentation = "https://docs.rs/memmapix"
readme = "README.md"
keywords = [
"mmap",
"memmap2",
"memory-map",
"io",
"file",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/al8n/memmapix-rs"
[lib]
name = "memmapix"
path = "src/lib.rs"
[[example]]
name = "cat"
path = "examples/cat.rs"
[dependencies.stable_deref_trait]
version = "1.0"
optional = true
[dev-dependencies.owning_ref]
version = "0.4"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.linux-raw-sys]
version = "0.12"
features = [
"general",
"no_std",
]
default-features = false
[target.'cfg(target_vendor = "apple")'.dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.rustix]
version = "1"
features = [
"mm",
"param",
]