Fix clippy errors, update deps
Some checks failed
Build Crate / build (push) Failing after 52s

This commit is contained in:
2024-08-18 19:56:00 -04:00
parent ffe6a771d2
commit d29da66536
10 changed files with 27 additions and 16 deletions

View File

@@ -46,10 +46,10 @@ jobs:
- name: Build the project
run: perseus --wasm-opt-version version_118 deploy --verbose
- name: Run clippy for server
run: RUSTFLAGS="--cfg=engine" cargo clippy --all -- -D warnings
run: RUSTFLAGS="--cfg=engine" cargo clippy --all --future-incompat-report -- -D warnings
continue-on-error: true
- name: Run clippy for frontend
run: RUSTFLAGS="--cfg=client" cargo clippy --all -- -D warnings
run: RUSTFLAGS="--cfg=client" cargo clippy --all --future-incompat-report -- -D warnings
continue-on-error: true
- name: Check for formatting issues
run: cargo fmt --check