Bootstrap geth Rust workspace

This commit is contained in:
Eric Wendland 2026-05-15 15:08:20 +02:00
commit 26f81ff1ef
73 changed files with 4835 additions and 0 deletions

17
justfile Normal file
View file

@ -0,0 +1,17 @@
fmt:
cargo fmt --all
check:
cargo check --workspace --all-targets
test:
cargo test --workspace
clippy:
cargo clippy --workspace --all-targets -- -D warnings
ci:
cargo fmt --all -- --check
cargo check --workspace --all-targets
cargo clippy --workspace --all-targets -- -D warnings
cargo test --workspace