]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
scripts: generate_rust_analyzer: syn: treat `std` as a dependency
authorJesung Yang <y.j3ms.n@gmail.com>
Tue, 25 Nov 2025 09:32:59 +0000 (09:32 +0000)
committerMiguel Ojeda <ojeda@kernel.org>
Sun, 18 Jan 2026 19:25:26 +0000 (20:25 +0100)
commit87417cc95b0f1096cc27011ec750d9f988a63e83
treed26c467370435cce864892e977c2a619014828b6
parent1b83ef9f7ad4635c913b80ef5e718f95f48e85af
scripts: generate_rust_analyzer: syn: treat `std` as a dependency

Fix the `generate_rust_analyzer.py` script to ensure that the
`rust-project.json` it produces includes `std` in the `deps` field for
the `syn` crate.

`syn` directly references items from `std`, so rust-analyzer should
treat it as a dependency to provide correct IDE support.

For example, `syn::Punctuated` contains fields of type `Vec<..>` and
`Option<..>`, both of which come from the standard library prelude.
With `std` listed in the `deps` field, rust-analyzer can infer the types
of these fields instead of showing `{unknown}`.

Verified the explicit uses of `std` using:

    grep -rn 'std::' rust/syn/

Fixes: 737401751ace ("rust: syn: enable support in kbuild")
Signed-off-by: Jesung Yang <y.j3ms.n@gmail.com>
Reviewed-by: Tamir Duberstein <tamird@gmail.com>
Tested-by: Tamir Duberstein <tamird@gmail.com>
Link: https://patch.msgid.link/6dbdf6e1c1639ae381ca9ab7041f84728ffa2267.1764062688.git.y.j3ms.n@gmail.com
[ Reworded title. - Miguel ]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
scripts/generate_rust_analyzer.py