dkdc 0.2.4

bookmarks for opening things from the terminal
# justfile

# load environment variables
set dotenv-load

# aliases
alias fmt:=format

# list justfile recipes
default:
    just --list

# format
format:
    @cargo fmt

# build
build *args:
    @cargo build {{args}}

# test
test *args:
    @cargo test {{args}}

# install
install:
    @cargo install --path .

# release-test
release-test:
    @cargo publish --dry-run

# release
release:
    @cargo publish

# docs
docs:
    @cargo doc --open

# clean
clean:
    @cargo clean