[package]
edition = "2021"
name = "landauer-allocator"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Landauer-on-Drop global allocator — counts bit erasures on every dealloc."
homepage = "https://mcp.aevum.network"
documentation = "https://docs.rs/landauer-allocator"
readme = "README.md"
keywords = [
"landauer",
"allocator",
"thermodynamics",
"energy",
"physics",
]
categories = [
"memory-management",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/kwailapt/aevum"
[lib]
name = "landauer_allocator"
path = "src/lib.rs"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
similar_names = "allow"