Skip to content

Commit d8695c4

Browse files
committed
refactor(ci): streamline build pipeline and cleanup dependencies
- Remove Rust linter step from CI workflow to speed up builds - Remove unused gaol dependency from Cargo.toml - Update windows-sys dependency to 0.60.2 in Cargo.lock This simplifies the build process and reduces unnecessary dependencies while maintaining core functionality.
1 parent bcffce0 commit d8695c4

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

.github/workflows/build-test.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,6 @@ jobs:
100100
- name: Build frontend
101101
run: bun run build
102102

103-
# Run Rust linter
104-
- name: Run Rust linter
105-
if: matrix.platform.os == 'ubuntu-latest'
106-
working-directory: ./src-tauri
107-
run: |
108-
rustup component add clippy
109-
cargo clippy -- -D warnings
110-
111103
# Build Tauri application (no bundle for faster CI)
112104
- name: Build Tauri application
113105
run: bun run tauri build --no-bundle -d

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ env_logger = "0.11"
3737
regex = "1"
3838
glob = "0.3"
3939
base64 = "0.22"
40-
gaol = "0.2"
4140
libc = "0.2"
4241
reqwest = { version = "0.12", features = ["json"] }
4342
futures = "0.3"

0 commit comments

Comments
 (0)