Merge pull request #5969 from xuhongxu96/main

Remove unused dependency `allocator-api2`
This commit is contained in:
Clément Renault
2025-11-15 10:03:15 +00:00
committed by GitHub
2 changed files with 4 additions and 12 deletions

15
Cargo.lock generated
View File

@@ -345,12 +345,6 @@ version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
[[package]]
name = "allocator-api2"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c583acf993cf4245c4acb0a2cc2ab1f9cc097de73411bb6d3647ff6af2b1013d"
[[package]] [[package]]
name = "anes" name = "anes"
version = "0.1.6" version = "0.1.6"
@@ -813,7 +807,7 @@ version = "3.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
dependencies = [ dependencies = [
"allocator-api2 0.2.21", "allocator-api2",
"serde", "serde",
] ]
@@ -823,7 +817,7 @@ version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ce682bdc86c2e25ef5cd95881d9d6a1902214eddf74cf9ffea88fe1464377e8" checksum = "4ce682bdc86c2e25ef5cd95881d9d6a1902214eddf74cf9ffea88fe1464377e8"
dependencies = [ dependencies = [
"allocator-api2 0.2.21", "allocator-api2",
"bitpacking", "bitpacking",
"bumpalo", "bumpalo",
"hashbrown 0.15.5", "hashbrown 0.15.5",
@@ -2766,7 +2760,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
dependencies = [ dependencies = [
"ahash 0.8.12", "ahash 0.8.12",
"allocator-api2 0.2.21", "allocator-api2",
] ]
[[package]] [[package]]
@@ -2775,7 +2769,7 @@ version = "0.15.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
dependencies = [ dependencies = [
"allocator-api2 0.2.21", "allocator-api2",
"equivalent", "equivalent",
"foldhash", "foldhash",
"serde", "serde",
@@ -4184,7 +4178,6 @@ dependencies = [
name = "milli" name = "milli"
version = "1.26.0" version = "1.26.0"
dependencies = [ dependencies = [
"allocator-api2 0.3.1",
"arroy", "arroy",
"bbqueue", "bbqueue",
"big_s", "big_s",

View File

@@ -101,7 +101,6 @@ bumpalo = "3.18.1"
bumparaw-collections = "0.1.4" bumparaw-collections = "0.1.4"
steppe = { version = "0.4", default-features = false } steppe = { version = "0.4", default-features = false }
thread_local = "1.1.9" thread_local = "1.1.9"
allocator-api2 = "0.3.0"
rustc-hash = "2.1.1" rustc-hash = "2.1.1"
enum-iterator = "2.1.0" enum-iterator = "2.1.0"
bbqueue = { git = "https://github.com/meilisearch/bbqueue" } bbqueue = { git = "https://github.com/meilisearch/bbqueue" }