index_list 0.2.16

A doubly linked list implemented in safe Rust using vector indexes
Documentation
# Just recipes for index-list
alias b := build
alias t := test
alias up := update
alias rel := release
alias pub := publish

build:
    cargo build --all-targets && cargo clippy

release:
    cargo build --release

test:
    cargo build && cargo test

bench:
    cargo bench

update:
    cargo update
    cargo outdated -d1

pull:
    unset SSH_AUTH_SOCK && git pull

push:
    unset SSH_AUTH_SOCK && git push

publish:
    cargo publish --allow-dirty