mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
The rust-analyzer update will need more work as it seems to break rust analysis on windows. This was carried out using `cargo upgrade` from `cargo-edit`: * getting exclusions options for rust-analyzer with ```bash cargo upgrade -i --dry-run | grep -o 'ra_ap_\S\+' | sort -u | sed 's/^/--exclude=/' > /tmp/exclude ``` * running ```bash cargo upgrade -i $(cat /tmp/exclude) misc/bazel/3rdparty/update_cargo_deps.sh ```