Initialize project scaffold and domain model

This commit is contained in:
a.tolmachev
2026-03-25 12:20:42 +03:00
commit fb302b2a2c
51 changed files with 6815 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
fmt:
cargo fmt --all
fmt-check:
cargo fmt --all --check
check:
cargo check --workspace
clippy:
cargo clippy --workspace --all-targets --all-features -- -D warnings
test:
cargo test --workspace --all-targets
verify:
just fmt-check
just clippy
just test