[package]
edition = "2024"
rust-version = "1.85"
name = "taktora-bounded-alloc"
version = "0.1.3"
authors = ["Patrick Dahlke"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static pre-allocated bounded global allocator with hard caps and lock-after-init mode."
homepage = "https://taktora.eu"
readme = "README.md"
keywords = [
"iceoryx2",
"ipc",
"realtime",
"robotics",
"ethercat",
]
categories = [
"embedded",
"concurrency",
"network-programming",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/patdhlk/taktora"
resolver = "2"
[features]
default = ["std"]
std = []
[lib]
name = "taktora_bounded_alloc"
path = "src/lib.rs"
[[example]]
name = "fail_closed"
path = "examples/fail_closed.rs"
[[test]]
name = "cap"
path = "tests/cap.rs"
[[test]]
name = "counters"
path = "tests/counters.rs"
[[test]]
name = "lock"
path = "tests/lock.rs"
[[test]]
name = "thread_safety"
path = "tests/thread_safety.rs"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"