justfile 643 B

12345678910111213141516171819
  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
  12. rustup default 1.67.0
  13. cargo check -p cashu
  14. cargo check -p cashu-sdk --no-default-features --features mint
  15. cargo check -p cashu-sdk --no-default-features --features wallet
  16. cargo check -p cashu-sdk --no-default-features --features blocking
  17. cargo test -p cashu
  18. cargo test -p cashu-sdk
  19. rustup default stable