pie_core 0.2.10

A high-performance, index-based data structure toolkit. Provides an arena allocator (ElemPool) used to build a cache-friendly PieList (doubly-linked list) and FibHeap (priority queue).
Documentation
[[bench]]
harness = false
name = "benches"
path = "benches/benches.rs"

[dependencies.hashbrown]
optional = true
version = "0.16"

[dependencies.petgraph]
optional = true
version = "0.8"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dev-dependencies.criterion]
version = "0.7"

[dev-dependencies.fibonacci_heap]
version = "0.8"

[dev-dependencies.index_list]
version = "0.3"

[dev-dependencies.petgraph]
version = "0.8"

[dev-dependencies.priority-queue]
version = "2.7"

[dev-dependencies.rand]
version = "0.9"

[dev-dependencies.serde_json]
version = "1.0"

[[example]]
name = "fibonacci_heap"
path = "examples/fibonacci_heap.rs"

[[example]]
name = "text_editor"
path = "examples/text_editor.rs"

[features]
bench-nightly = []
default = ["std"]
petgraph = ["dep:petgraph", "dep:hashbrown"]
serde = ["dep:serde"]
std = []

[lib]
name = "pie_core"
path = "src/lib.rs"

[package]
authors = ["Stefan Lindblad <stefan.lindblad@linux.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "algorithms", "memory-management"]
description = """
A high-performance, index-based data structure toolkit. Provides an arena
allocator (ElemPool) used to build a cache-friendly PieList
(doubly-linked list) and FibHeap (priority queue).
"""
documentation = "https://docs.rs/pie_core"
edition = "2024"
keywords = ["arena", "list", "heap", "priority-queue", "data-structures"]
license = "MPL-2.0"
name = "pie_core"
readme = "README.md"
repository = "https://github.com/Fairglow/pie_core"
resolver = "2"
version = "0.2.10"

[profile.release]
codegen-units = 1
lto = true

[[test]]
name = "pathfinding"
path = "tests/pathfinding.rs"

[[test]]
name = "serde"
path = "tests/serde.rs"

[[test]]
name = "text_editor"
path = "tests/text_editor.rs"