[package]
edition = "2024"
name = "rusty_alloc-api"
version = "1.0.0"
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"
[[test]]
name = "api_miri"
path = "tests/api_miri.rs"
[dependencies.rusty_alloc]
version = "1.0.0"
[lints.clippy]
borrow_as_ptr = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_ptr_alignment = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
explicit_iter_loop = "allow"
inline_always = "allow"
iter_with_drain = "allow"
many_single_char_names = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
redundant_closure_for_method_calls = "allow"
semicolon_if_nothing_returned = "allow"
single_match_else = "allow"
too_long_first_doc_paragraph = "allow"
too_many_lines = "allow"
undocumented_unsafe_blocks = "deny"
use_self = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(loom)",
"cfg(kani)",
]