diff --git a/.changes/phf-0.13.md b/.changes/phf-0.13.md new file mode 100644 index 000000000000..366e8b61938b --- /dev/null +++ b/.changes/phf-0.13.md @@ -0,0 +1,5 @@ +--- +'tauri-utils': 'patch:deps' +--- + +Updated `phf` to 0.13 diff --git a/Cargo.lock b/Cargo.lock index bc1a0049acfe..7fbecb6d28d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8960,7 +8960,7 @@ dependencies = [ "oxc_ast", "oxc_parser", "oxc_span", - "phf 0.11.3", + "phf 0.13.1", "plist", "pretty_assertions", "rand 0.9.4", @@ -9245,7 +9245,7 @@ dependencies = [ "kuchikiki", "log", "memchr", - "phf 0.11.3", + "phf 0.13.1", "plist", "proc-macro2", "quote", diff --git a/crates/tauri-cli/Cargo.toml b/crates/tauri-cli/Cargo.toml index 52e18440fe8c..4c794b0dc277 100644 --- a/crates/tauri-cli/Cargo.toml +++ b/crates/tauri-cli/Cargo.toml @@ -104,7 +104,7 @@ oxc_span = "0.36" oxc_allocator = "0.36" oxc_ast = "0.36" magic_string = "0.3" -phf = { version = "0.11", features = ["macros"] } +phf = { version = "0.13", features = ["macros"] } walkdir = "2" elf = "0.7" memchr = "2" diff --git a/crates/tauri-utils/Cargo.toml b/crates/tauri-utils/Cargo.toml index 1a8bee5dddae..3d14a3f44b30 100644 --- a/crates/tauri-utils/Cargo.toml +++ b/crates/tauri-utils/Cargo.toml @@ -17,7 +17,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" anyhow = "1" thiserror = "2" -phf = { version = "0.11", features = ["macros"] } +phf = { version = "0.13", features = ["macros"] } brotli = { version = "8", optional = true, default-features = false, features = [ "std", ] }