[package]
name = "framealloc"
version = "0.3.0"
edition = "2021"
authors = ["YelenaTor"]
description = "Intent-aware, thread-smart memory allocation for Rust game engines"
license = "MIT OR Apache-2.0"
repository = "https://github.com/YelenaTor/framealloc"
homepage = "https://github.com/YelenaTor/framealloc"
documentation = "https://docs.rs/framealloc"
keywords = ["allocator", "game-engine", "memory", "bevy", "arena"]
categories = ["memory-management", "game-development"]
readme = "TECHNICAL.md"
rust-version = "1.70"
[features]
default = []
parking_lot = ["dep:parking_lot"]
bevy = ["dep:bevy_ecs", "dep:bevy_app"]
debug = ["dep:backtrace"]
tracy = ["dep:tracy-client"]
nightly = []
diagnostics = []
[dependencies]
crossbeam-queue = "0.3"
parking_lot = { version = "0.12", optional = true }
bevy_ecs = { version = "0.14", optional = true, default-features = false }
bevy_app = { version = "0.14", optional = true, default-features = false }
backtrace = { version = "0.3", optional = true }
tracy-client = { version = "0.17", optional = true }
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "allocator"
harness = false