sqry v16.0.6 is a performance release for large C and mixed-language codebases. It repairs a quadratic path in Pass 5b C indirect-call resolution, reducing one of the slowest Linux-kernel-scale indexing phases without changing the query language or MCP/LSP APIs.
The release removes repeated broad scans while resolving C indirect-call candidates. On a Linux kernel drivers/net subset, the repaired path was verified at 10.8x faster than the pre-fix implementation.
This matters most on large C-heavy repositories where function-pointer and indirect-call analysis can dominate indexing time. The index still records the same graph relationships; the fix changes how sqry reaches those results.
sqry index --force . to benefit from the new indexing pathcurl -fsSL https://raw.githubusercontent.com/verivus-oss/sqry/main/scripts/install.sh | bash -s -- --component all
sqry --version
# sqry 16.0.6
Windows users can run:
irm https://raw.githubusercontent.com/verivus-oss/sqry/main/scripts/install.ps1 | iex
sqry --version
# sqry 16.0.6
Or install the CLI from crates.io:
cargo install sqry-cli
Release binaries are available from GitHub Releases.