pie_core 0.2.13

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
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "pie_core"
version = "0.2.13"
authors = ["Stefan Lindblad <stefan.lindblad@linux.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
readme = "README.md"
keywords = [
    "arena",
    "list",
    "heap",
    "priority-queue",
    "data-structures",
]
categories = [
    "data-structures",
    "algorithms",
    "memory-management",
]
license = "MPL-2.0"
repository = "https://github.com/Fairglow/pie_core"
resolver = "2"

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

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

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

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

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

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

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

[[bench]]
name = "benches"
path = "benches/benches.rs"
harness = false

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

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

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

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

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

[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.10"

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

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