docs/design: new design by BYTEMALTE and Docs

This commit is contained in:
2026-03-20 09:47:46 +00:00
parent 491b91967f
commit c7e11644dd
6 changed files with 364 additions and 371 deletions

41
justfile Normal file
View File

@@ -0,0 +1,41 @@
# Justfile for mcalc
# Default recipe
default: run
# Development
run:
cargo run
run-web:
cargo run --features web
# Build
build:
cargo build
build-release:
cargo build --release
# Testing
test:
cargo test
test-name name:
cargo test {{name}}
# Linting & Formatting
fmt:
cargo fmt
fmt-check:
cargo fmt -- --check
lint:
cargo clippy
lint-strict:
cargo clippy -- -D warnings
# All checks
check: fmt-check lint test