[package]
edition = "2024"
name = "rusty_alloc-api"
version = "0.3.2"
authors = ["remade-with-rust"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust surface for the rusty_alloc pure-Rust mimalloc remake: GlobalAlloc, first-class Heap, and the Allocator trait. No unsafe required of callers. MIT."
documentation = "https://docs.rs/rusty_alloc-api"
readme = "README.md"
keywords = [
"allocator",
"malloc",
"mimalloc",
"memory",
"no-std",
]
categories = [
"memory-management",
"no-std",
"development-tools",
]
license = "MIT"
repository = "https://github.com/remade-with-rust/rusty_alloc"
resolver = "2"
[features]
debug_checks = ["rusty_alloc/debug_checks"]
profile = ["rusty_alloc/profile"]
secure = ["rusty_alloc/secure"]
[lib]
name = "rusty_alloc_api"
path = "src/lib.rs"
[dependencies.rusty_alloc]
version = "0.3.2"
[lints.clippy]
undocumented_unsafe_blocks = "deny"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]