default: all
all: deps build test
auth:
@echo "Copy and paste the following in the terminal where you"
@echo "will be executing cargo commands:"
@echo
@echo ' eval $$(ssh-agent -s) && ssh-add'
@echo
build:
@cargo build
test:
@cargo test
deps:
@cargo update
publish:
@cargo publish