[package]
edition = "2021"
rust-version = "1.70"
name = "memkit"
version = "0.2.0-beta.1"
authors = ["YelenaTor"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, intent-driven memory allocation for systems requiring predictable performance"
documentation = "https://docs.rs/memkit"
readme = "README.md"
keywords = [
"allocator",
"memory",
"frame-allocator",
"arena",
"deterministic",
]
categories = [
"memory-management",
"no-std",
"concurrency",
]
license = "MPL-2.0"
repository = "https://github.com/YelenaTor/memkit"
[features]
debug = []
default = []
parking_lot = ["dep:parking_lot"]
poisoning = []
sentinel = []
[lib]
name = "memkit"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "game_loop"
path = "examples/game_loop.rs"
[[example]]
name = "phases"
path = "examples/phases.rs"
[[test]]
name = "deferred_integration"
path = "tests/deferred_integration.rs"
[[test]]
name = "handle_integration"
path = "tests/handle_integration.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "phase_integration"
path = "tests/phase_integration.rs"
[dependencies.crossbeam-queue]
version = "0.3"
[dependencies.crossbeam-utils]
version = "0.8"
[dependencies.parking_lot]
version = "0.12"
optional = true
[dev-dependencies]