tftsr-devops_investigation/src-tauri/src/integrations
Shaun Arman 2b82c28809
All checks were successful
Test / frontend-typecheck (pull_request) Successful in 1m29s
Test / frontend-tests (pull_request) Successful in 1m25s
PR Review Automation / review (pull_request) Successful in 4m21s
Test / rust-fmt-check (pull_request) Successful in 12m9s
Test / rust-clippy (pull_request) Successful in 13m40s
Test / rust-tests (pull_request) Successful in 15m17s
fix(clippy): fix Rust nightly clippy lints
Fix two new lints enforced by Rust nightly:

**1. clippy::useless_borrows_in_formatting (auth.rs:57)**
- Changed: `&pkce.code_challenge` → `pkce.code_challenge`
- format!() automatically borrows, explicit & is redundant

**2. clippy::unnecessary_sort_by (confluence_search.rs:131)**
- Changed: `sort_by(|a, b| f(a).cmp(&f(b)))` → `sort_by_key(|a| f(a))`
- sort_by_key is more idiomatic and efficient (computes key once per element)

**Why Nightly Enforces This:**
Rust nightly has stricter clippy lints than stable.
These weren't errors in stable rust but are caught in nightly.

**Verified:**
 cargo clippy passes (0 warnings)
 cargo test passes (308 tests)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-06-05 17:35:09 -05:00
..
auth.rs fix(clippy): fix Rust nightly clippy lints 2026-06-05 17:35:09 -05:00
azuredevops_search.rs fix: correct WIQL syntax and escape_wiql implementation 2026-04-14 20:38:21 -05:00
azuredevops.rs fix(security): harden secret handling and audit integrity 2026-04-04 23:37:05 -05:00
callback_server.rs fix: resolve clippy format-args failures and OpenSSL vendoring issue 2026-04-04 15:05:13 -05:00
confluence_search.rs fix(clippy): fix Rust nightly clippy lints 2026-06-05 17:35:09 -05:00
confluence.rs fix(security): harden secret handling and audit integrity 2026-04-04 23:37:05 -05:00
mod.rs feat(integrations): implement query expansion for semantic search 2026-04-14 19:37:27 -05:00
native_cookies_macos.rs feat(ai): add tool-calling and integration search as AI data source 2026-04-07 09:35:34 -05:00
native_cookies.rs feat(ai): add tool-calling and integration search as AI data source 2026-04-07 09:35:34 -05:00
query_expansion.rs fix: remove ALL remaining proprietary references (MSI/Vesta/VNXT) 2026-06-05 16:13:39 -05:00
servicenow_search.rs fix(integrations): security and correctness improvements 2026-04-14 19:55:32 -05:00
servicenow.rs fix: resolve clippy format-args failures and OpenSSL vendoring issue 2026-04-04 15:05:13 -05:00
webview_auth.rs fix: comprehensive trcaa→tftsr conversion and URL corrections 2026-06-05 15:38:29 -05:00
webview_fetch.rs fix: comprehensive trcaa→tftsr conversion and URL corrections 2026-06-05 15:38:29 -05:00
webview_search.rs fix: comprehensive trcaa→tftsr conversion and URL corrections 2026-06-05 15:38:29 -05:00