Skip to content

Commit

Permalink
Update core/tauri-codegen/src/context.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.app>
  • Loading branch information
olexiyb and lucasfernog authored May 29, 2024
1 parent a1d86fd commit 368c0dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tauri-codegen/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ pub fn context_codegen(data: ContextData) -> Result<TokenStream, EmbeddedAssetsE

let plist_file = out_dir.join("Info.plist");

let mut plist_contents = BufWriter::new(Vec::new());
let mut plist_contents = std::io::BufWriter::new(Vec::new());
info_plist
.to_writer_xml(&mut plist_contents)
.expect("failed to serialize plist");
Expand Down

0 comments on commit 368c0dc

Please sign in to comment.