[package]
edition = "2021"
name = "alloc-checked"
version = "0.1.3"
authors = ["Adam Cimarosti <adam@questdb.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Collections that don't panic on alloc failures"
readme = "README.md"
keywords = [
"alloc",
"collections",
"no-std",
"safe-allocation",
"container",
]
categories = [
"data-structures",
"memory-management",
"no-std",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/questdb/alloc-checked"
[package.metadata]
rust-version = "nightly"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"nightly",
]
[features]
default = []
no_std = []
[lib]
name = "alloc_checked"
path = "src/lib.rs"