pie_core 0.2.3

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
# Just recipes for build actions
alias lib := release
alias doc := documentation
alias old := outdated

all: build examples release

bench: table
    cargo +nightly bench
    target/release/bench-table

build:
    cargo build && cargo clippy

documentation:
    cargo doc --no-deps --open

examples:
    cargo build --examples --release

outdated:
    cargo outdated --depth=1

release:
    cargo build --release

table:
    cargo build -p bench-table --release

test:
    cargo nextest run --test-threads num-cpus

test-out:
    cargo nextest run --no-capture --test-threads num-cpus