Bootstrap DD3 Rust port workspace with host-first compatibility tests

This commit is contained in:
2026-02-21 00:59:03 +01:00
parent d3f9a2e62d
commit d0212f4e38
63 changed files with 3914 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
.PHONY: test lint fuzz-smoke
test:
cargo test --workspace
lint:
cargo fmt --all -- --check
cargo clippy --workspace --all-targets -- -D warnings
fuzz-smoke:
@where cargo-fuzz >NUL 2>&1 && cargo fuzz run frame_decode -- -max_total_time=5 || echo cargo-fuzz not installed; skipping