Files
codeql/rust/ast-generator/Cargo.toml
Paolo Tranquilli d2c7decd02 Rust/Ruby: upgrade all cargo dependencies excluding rust-analyzer
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
   ```
2025-01-08 09:57:11 +01:00

14 lines
305 B
TOML

[package]
name = "ast-generator"
version = "0.1.0"
edition = "2021"
# When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies]
ungrammar = "1.16.1"
proc-macro2 = "1.0.92"
quote = "1.0.38"
either = "1.13.0"
stdx = {package = "ra_ap_stdx", version = "0.0.248"}
itertools = "0.14.0"