diff --git a/Cargo.lock b/Cargo.lock index 3d55a0222..41749f221 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -344,12 +344,6 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" -[[package]] -name = "allocator-api2" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c583acf993cf4245c4acb0a2cc2ab1f9cc097de73411bb6d3647ff6af2b1013d" - [[package]] name = "anes" version = "0.1.6" @@ -812,7 +806,7 @@ version = "3.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" dependencies = [ - "allocator-api2 0.2.21", + "allocator-api2", "serde", ] @@ -822,7 +816,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ce682bdc86c2e25ef5cd95881d9d6a1902214eddf74cf9ffea88fe1464377e8" dependencies = [ - "allocator-api2 0.2.21", + "allocator-api2", "bitpacking", "bumpalo", "hashbrown 0.15.5", @@ -2805,7 +2799,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ "ahash 0.8.12", - "allocator-api2 0.2.21", + "allocator-api2", ] [[package]] @@ -2814,7 +2808,7 @@ version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ - "allocator-api2 0.2.21", + "allocator-api2", "equivalent", "foldhash", "serde", @@ -4194,7 +4188,6 @@ dependencies = [ name = "milli" version = "1.24.0" dependencies = [ - "allocator-api2 0.3.1", "arroy", "bbqueue", "big_s", diff --git a/crates/milli/Cargo.toml b/crates/milli/Cargo.toml index 938dfe95e..2724d668e 100644 --- a/crates/milli/Cargo.toml +++ b/crates/milli/Cargo.toml @@ -100,7 +100,6 @@ bumpalo = "3.18.1" bumparaw-collections = "0.1.4" steppe = { version = "0.4", default-features = false } thread_local = "1.1.9" -allocator-api2 = "0.3.0" rustc-hash = "2.1.1" enum-iterator = "2.1.0" bbqueue = { git = "https://github.com/meilisearch/bbqueue" }