[[bench]]
harness = false
name = "benches"
path = "benches/benches.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.fibonacci_heap]
version = "0.8"
[dev-dependencies.index_list]
version = "0.3"
[dev-dependencies.priority-queue]
version = "2.7"
[dev-dependencies.rand]
version = "0.9"
[[example]]
name = "showcase"
path = "examples/showcase.rs"
[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.3"
[profile.release]
codegen-units = 1
lto = true
[[test]]
name = "pathfinding"
path = "tests/pathfinding.rs"
[[test]]
name = "text_editor"
path = "tests/text_editor.rs"