Files
mistralai-client-rs/justfile
Sienna Meridian Satterwhite d5eb16dffc chore: update maintainer info and project metadata
- Change author to Sunbeam Studios
- Remove GitHub-specific files (.github/, renovate, README.template)
- Remove .env.example (replaced by .envrc workflow)
- Replace Makefile with justfile
- Update CHANGELOG with v1.0.0 fork notes
- Update Cargo.toml homepage to sunbeam.pt
2026-03-20 19:03:19 +00:00

28 lines
436 B
Makefile

check:
cargo check --all-targets
doc:
cargo doc --open
fmt:
cargo fmt
lint:
cargo clippy --all-targets
publish:
cargo publish --registry sunbeam
test:
cargo test --no-fail-fast
test-cover:
cargo llvm-cov
test-examples:
#!/usr/bin/env bash
for example in $(ls examples/*.rs | sed 's/examples\/\(.*\)\.rs/\1/'); do
echo "Running $example"
cargo run --example "$example"
done