justfile 757 B

123456789101112131415161718192021
  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. cargo clippy --target wasm32-unknown-unknown -p cashu
  13. cargo clippy --target wasm32-unknown-unknown -p cashu-sdk
  14. rustup default 1.70.0
  15. cargo check -p cashu
  16. cargo check -p cashu-sdk --no-default-features --features mint
  17. cargo check -p cashu-sdk --no-default-features --features wallet
  18. cargo check -p cashu-sdk --no-default-features --features blocking
  19. cargo test -p cashu
  20. cargo test -p cashu-sdk
  21. rustup default stable