justfile 743 B

1234567891011121314151617181920
  1. precommit:
  2. rustup default stable
  3. cargo fmt
  4. cargo check -p cashu
  5. cargo check -p cashu-sdk --no-default-features --features mint
  6. cargo check -p cashu-sdk --no-default-features --features wallet
  7. cargo check -p cashu-sdk --no-default-features --features blocking
  8. typos
  9. cargo test -p cashu
  10. cargo test -p cashu-sdk
  11. cargo clippy --target wasm32-unknown-unknown -p cashu
  12. cargo clippy --target wasm32-unknown-unknown -p cashu-sdk
  13. rustup default 1.70.0
  14. cargo check -p cashu
  15. cargo check -p cashu-sdk --no-default-features --features mint
  16. cargo check -p cashu-sdk --no-default-features --features wallet
  17. cargo check -p cashu-sdk --no-default-features --features blocking
  18. cargo test -p cashu
  19. cargo test -p cashu-sdk
  20. rustup default stable