Skip to content

Commit

Permalink
small merge fix and dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
cpetig committed Aug 1, 2024
1 parent 8d764ad commit df019cf
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 47 deletions.
90 changes: 45 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/bin/wit-bindgen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ fn gen_world(
resolve.features.insert(feature.to_string());
}
}
let (pkgs, _files) = resolve.push_path(&opts.wit)?;
let (pkg, _files) = resolve.push_path(&opts.wit)?;
resolve.add_future_and_stream_results();
let world = resolve.select_world(&pkgs, opts.world.as_deref())?;
let world = resolve.select_world(pkg, opts.world.as_deref())?;
generator.generate(&resolve, world, files)?;

Ok(())
Expand Down

0 comments on commit df019cf

Please sign in to comment.