chore: update script to use phf 0.11 (#33434)

Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com>
This commit is contained in:
Gae24 2024-09-16 12:32:49 +02:00 committed by GitHub
parent 7df30f3788
commit 10c64820e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 16 deletions

17
Cargo.lock generated
View file

@ -1183,7 +1183,7 @@ dependencies = [
"cssparser-macros", "cssparser-macros",
"dtoa-short", "dtoa-short",
"itoa", "itoa",
"phf 0.11.2", "phf",
"serde", "serde",
"smallvec", "smallvec",
] ]
@ -4173,7 +4173,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82c88c6129bd24319e62a0359cb6b958fa7e8be6e19bb1663bc396b90883aca5" checksum = "82c88c6129bd24319e62a0359cb6b958fa7e8be6e19bb1663bc396b90883aca5"
dependencies = [ dependencies = [
"log", "log",
"phf 0.11.2", "phf",
"phf_codegen", "phf_codegen",
"string_cache", "string_cache",
"string_cache_codegen", "string_cache_codegen",
@ -5006,15 +5006,6 @@ dependencies = [
"indexmap", "indexmap",
] ]
[[package]]
name = "phf"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
"phf_shared 0.10.0",
]
[[package]] [[package]]
name = "phf" name = "phf"
version = "0.11.2" version = "0.11.2"
@ -5760,7 +5751,7 @@ dependencies = [
"num_cpus", "num_cpus",
"parking_lot", "parking_lot",
"percent-encoding", "percent-encoding",
"phf 0.10.1", "phf",
"phf_codegen", "phf_codegen",
"phf_shared 0.11.2", "phf_shared 0.11.2",
"pixels", "pixels",
@ -5920,7 +5911,7 @@ dependencies = [
"fxhash", "fxhash",
"log", "log",
"new_debug_unreachable", "new_debug_unreachable",
"phf 0.11.2", "phf",
"phf_codegen", "phf_codegen",
"precomputed-hash", "precomputed-hash",
"servo_arc", "servo_arc",

View file

@ -78,7 +78,7 @@ num_cpus = { workspace = true }
num-traits = { workspace = true } num-traits = { workspace = true }
parking_lot = { workspace = true } parking_lot = { workspace = true }
percent-encoding = { workspace = true } percent-encoding = { workspace = true }
phf = "0.10" phf = "0.11"
pixels = { path = "../pixels" } pixels = { path = "../pixels" }
profile_traits = { workspace = true } profile_traits = { workspace = true }
range = { path = "../range" } range = { path = "../range" }

View file

@ -60,8 +60,7 @@ packages = [
# stuck on 0.8.4 with no new releases. # stuck on 0.8.4 with no new releases.
"env_logger", "env_logger",
# Stylo uses phf 0.11, while script and other dependencies use 0.10. # Required until a new version of string-cache is released.
"phf",
"phf_generator", "phf_generator",
"phf_shared", "phf_shared",