[package]
edition = "2021"
name = "freeze"
version = "0.1.1"
build = false
include = [
"Cargo.toml",
"README.md",
"LICENSE",
".gitignore",
"src/lib.rs",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A mmap-backed bump allocator that allows compact and zero-realloc mutability of the top vector."
homepage = "https://github.com/Adam-Vandervorst/Freeze/"
readme = "README.md"
keywords = [
"alloc",
"vec",
"slice",
"mmap",
]
categories = [
"memory-management",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Adam-Vandervorst/Freeze/"
[lib]
name = "freeze"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"