[package]
edition = "2024"
name = "aligned_box"
version = "0.3.1"
authors = ["Michael Lass <bevan@bi-co.net>"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Allocate heap memory with user-specified alignment"
homepage = "https://github.com/michaellass/aligned_box/"
documentation = "https://docs.rs/aligned_box/"
readme = "README.md"
keywords = [
"aligned",
"alignment",
"box",
"heap",
"memory",
]
categories = [
"data-structures",
"memory-management",
]
license = "MIT"
repository = "https://github.com/michaellass/aligned_box.git"
[badges.travis-ci]
branch = "master"
repository = "michaellass/aligned_box"
[features]
default = ["std"]
std = []
[lib]
name = "aligned_box"
path = "src/lib.rs"
[dev-dependencies.lazy_static]
version = "^1.4"