lookups 0.0.1

Improve the data retrieval operations for collections.
Documentation
# default, list all just Recipe
default: 
  @just -q --list

alias t := test
alias l := clippy

set export

# cargo get: https://crates.io/crates/cargo-get
version := `cargo get --entry="./Cargo.toml" package.version --pretty`
version_msg := "New release with version: " + version


# run all tests with all-features
test filter="":
  @cargo test --all-features {{filter}}

# cargo watch for test with given filter
watch filter="":
  @cargo watch -q -c -x 'test {{filter}}'

# run cargo test and clippy
clippy: test
  @cargo clippy --tests --workspace -- -D warnings

# run cargo doc --no-deps
doc:
  @cargo doc --no-deps


# generate the README.md from the README.tpl + src/lib.rs
readme:
  cargo readme -o ./README.md 

echo_version:
  @echo "Version: " $version

release_new_version:
  @git tag -a $version -m $version_msg
  @git push origin --tags
#  cargo publish -v