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.
This commit is contained in:
Mufeed VH
2025-06-25 03:58:54 +05:30
parent bcffce0a08
commit d8695c4096
3 changed files with 1 additions and 10 deletions

View File

@@ -100,14 +100,6 @@ jobs:
- name: Build frontend
run: bun run build
# Run Rust linter
- name: Run Rust linter
if: matrix.platform.os == 'ubuntu-latest'
working-directory: ./src-tauri
run: |
rustup component add clippy
cargo clippy -- -D warnings
# Build Tauri application (no bundle for faster CI)
- name: Build Tauri application
run: bun run tauri build --no-bundle -d

2
src-tauri/Cargo.lock generated
View File

@@ -1137,7 +1137,7 @@ dependencies = [
"libc",
"option-ext",
"redox_users 0.5.0",
"windows-sys 0.59.0",
"windows-sys 0.60.2",
]
[[package]]

View File

@@ -37,7 +37,6 @@ env_logger = "0.11"
regex = "1"
glob = "0.3"
base64 = "0.22"
gaol = "0.2"
libc = "0.2"
reqwest = { version = "0.12", features = ["json"] }
futures = "0.3"