File: downgrade-phf-0.11.patch

package info (click to toggle)
fish 4.2.1-3.2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 35,976 kB
  • sloc: python: 6,972; javascript: 1,407; sh: 1,009; xml: 411; ansic: 230; objc: 78; makefile: 20
file content (23 lines) | stat: -rw-r--r-- 886 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Forwarded: not-needed
Last-Update: 2025-11-21
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -42,4 +42,4 @@
 ] }
-phf = { version = "0.12", default-features = false }
-phf_codegen = { version = "0.12" }
+phf = { version = "0.11", default-features = false }
+phf_codegen = { version = "0.11" }
 portable-atomic = { version = "1", default-features = false, features = [
--- a/crates/gettext-maps/build.rs
+++ b/crates/gettext-maps/build.rs
@@ -78,3 +78,3 @@
                 // language.
-                catalogs.entry(language, format!("&{map_name}"));
+                catalogs.entry(language, &format!("&{map_name}"));

@@ -137,3 +137,3 @@
                         String::from_utf8(msgid.into()).unwrap(),
-                        to_raw_str(&String::from_utf8(msgstr.into()).unwrap()),
+                        &to_raw_str(&String::from_utf8(msgstr.into()).unwrap()),
                     );