From 285c79ca776e819c699e854a32662d14d21398e9 Mon Sep 17 00:00:00 2001 From: Tunglies <77394545+Tunglies@users.noreply.github.com> Date: Tue, 3 Feb 2026 10:03:00 +0800 Subject: [PATCH] feat: re-export `url::form_urlencoded` --- .changes/feat-re-export-from-url.md | 5 +++++ crates/tauri/src/lib.rs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/feat-re-export-from-url.md diff --git a/.changes/feat-re-export-from-url.md b/.changes/feat-re-export-from-url.md new file mode 100644 index 000000000..0066b4ff3 --- /dev/null +++ b/.changes/feat-re-export-from-url.md @@ -0,0 +1,5 @@ +--- +"tauri": feat:minor +--- + +Re-export `url::form_urlencoded` diff --git a/crates/tauri/src/lib.rs b/crates/tauri/src/lib.rs index d56ba8736..e8e3f288d 100644 --- a/crates/tauri/src/lib.rs +++ b/crates/tauri/src/lib.rs @@ -79,7 +79,7 @@ pub use tauri_macros::mobile_entry_point; pub use tauri_macros::{command, generate_handler}; use tauri_utils::assets::AssetsIter; -pub use url::Url; +pub use url::{form_urlencoded, Url}; pub(crate) mod app; pub mod async_runtime;