Files
fressh/packages/react-native-uniffi-russh/rust/uniffi-russh/justfile
2025-09-22 00:17:40 -04:00

19 lines
255 B
Makefile

default:
@just --list
lint:
cargo clippy --all-targets --all-features -- -D warnings
# Update all Cargo dependencies to the latest allowed by Cargo.toml
update-deps:
cargo update
# Run crate tests
test:
cargo test
fmt:
cargo fmt