[package]
edition = "2024"
name = "plugmem-arena"
version = "0.1.4"
authors = ["Mansur Azatbek <mansur62624@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flat byte-pool storage structures for plugmem: sharded sorted arena, blob heap, chunked lists, interner."
homepage = "https://github.com/m62624/plugmem"
readme = "README.md"
keywords = [
"arena",
"no-std",
"storage",
"interner",
"wasm",
]
categories = [
"data-structures",
"memory-management",
"no-std",
"embedded",
"wasm",
]
license = "MIT"
repository = "https://github.com/m62624/plugmem"
resolver = "2"
[package.metadata.dist]
dist = false
[features]
counters = []
serde = ["dep:serde"]
[lib]
name = "plugmem_arena"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "bench_repro"
path = "examples/bench_repro.rs"
[[example]]
name = "overlay"
path = "examples/overlay.rs"
[[test]]
name = "arena"
path = "tests/arena.rs"
[[test]]
name = "arena_overlay"
path = "tests/arena_overlay.rs"
[[test]]
name = "blob"
path = "tests/blob.rs"
[[test]]
name = "borrowed"
path = "tests/borrowed.rs"
[[test]]
name = "chunk"
path = "tests/chunk.rs"
[[test]]
name = "chunk_overlay"
path = "tests/chunk_overlay.rs"
[[test]]
name = "image"
path = "tests/image.rs"
[[test]]
name = "interner"
path = "tests/interner.rs"
[[test]]
name = "perf_gates"
path = "tests/perf_gates.rs"
[[test]]
name = "prop"
path = "tests/prop.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[[bench]]
name = "storage"
path = "benches/storage.rs"
harness = false
[dependencies.serde]
version = "1.0.229"
features = [
"derive",
"alloc",
]
optional = true
default-features = false
[dependencies.thiserror]
version = "2.0.18"
default-features = false
[dependencies.xxhash-rust]
version = "0.8.17"
features = ["xxh3"]
default-features = false
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies.criterion]
version = "0.8.2"
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies.proptest]
version = "1.11.0"
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies.serde_json]
version = "1.0.150"
[lints.rust]
missing_docs = "deny"
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(tarpaulin)",
"cfg(valgrind)",
]
[lints.rustdoc]
broken_intra_doc_links = "deny"