Add rust template

This commit is contained in:
Daniel Lundin 2024-10-21 23:02:58 +02:00
commit 508bbd316e
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI
13 changed files with 1260 additions and 0 deletions

37
justfile Normal file
View file

@ -0,0 +1,37 @@
set shell := ["/usr/bin/env", "bash", "-euo", "pipefail", "-c"]
[private]
default:
@just --choose
# Run all tests
check:
nix flake check
# Lint all source code
lint:
echo FIXME: Add linter(s) here
# Format all source code
fmt:
echo FIXME: Add formatter here
# Update all dependencies
update: update-nix-pkgs update-rust-deps
# Update rust dependencies
update-rust-deps:
cargo upgrade --recursive
cargo update --recursive
# Update nix flake packages
update-nix-pkgs:
nix flake update
# Find unused dependencies with cargo machete
machete:
cargo machete
# Run local development
dev $OTEL_SERVICE_NAME="my-program" $RUST_LOG="debug":
watchexec --clear --restart --stop-signal INT --debounce 300ms -- nix run .