[package]
edition = "2024"
rust-version = "1.97"
name = "concinnity-memory"
version = "0.18.65"
authors = ["Grant Wilkes <grant@concinnity.gg>"]
build = false
include = ["/src"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Allocation layer for Concinnity: tracking allocator, tagged budgets, arenas, pools"
homepage = "https://concinnity.gg"
readme = false
keywords = [
"gamedev",
"allocator",
"concinnity",
]
categories = [
"game-engines",
"memory-management",
"no-std",
]
license = "MIT"
repository = "https://github.com/concinnitygg/concinnity"
resolver = "2"
[features]
detail = []
[lib]
name = "concinnity_memory"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
dbg_macro = "warn"
empty_enum_variants_with_brackets = "warn"
infinite_loop = "warn"
lossy_float_literal = "warn"
mem_forget = "warn"
mixed_attributes_style = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_self_imports = "warn"
[lints.rust]
future_incompatible = "warn"
missing_docs = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"