Skip to content

Commit

Permalink
Rust: cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
aibaars committed Dec 18, 2024
1 parent d6e7a93 commit 83111f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/extractor/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ fn main() -> anyhow::Result<()> {
let cargo_config = cfg.to_cargo_config();
for (manifest, files) in map.values().filter(|(_, files)| !files.is_empty()) {
if let Some((ref db, ref vfs)) = extractor.load_manifest(manifest, &cargo_config) {
crate_graph::extract_crate_graph(&extractor.traps, db, vfs);
crate_graph::extract_crate_graph(extractor.traps, db, vfs);
let semantics = Semantics::new(db);
for file in files {
match extractor.load_source(file, &semantics, vfs) {
Expand Down

0 comments on commit 83111f3

Please sign in to comment.