diff --git a/Cargo.toml b/Cargo.toml index 6a5f0b2a835e..53d725474339 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -106,6 +106,5 @@ features = [ ] [patch.crates-io] -ahash = { git = "https://github.com/orlp/aHash", branch = "fix-arm-intrinsics" } # packed_simd_2 = { git = "https://github.com/rust-lang/packed_simd", rev = "e57c7ba11386147e6d2cbad7c88f376aab4bdc86" } # simd-json = { git = "https://github.com/ritchie46/simd-json", branch = "alignment" } diff --git a/py-polars/Cargo.lock b/py-polars/Cargo.lock index 0c4084a5d0a5..e6c529549535 100644 --- a/py-polars/Cargo.lock +++ b/py-polars/Cargo.lock @@ -25,13 +25,15 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "ahash" -version = "0.8.3" -source = "git+https://github.com/orlp/aHash?branch=fix-arm-intrinsics#80685f88d3c120ef39fb3fde1c7786b044af5e8b" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd7d5a2cecb58716e47d67d5703a249964b14c7be1ec3cad3affc295b2d1c35d" dependencies = [ "cfg-if", "getrandom", "once_cell", "version_check", + "zerocopy", ] [[package]] @@ -3109,6 +3111,26 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9828b178da53440fa9c766a3d2f73f7cf5d0ac1fe3980c1e5018d899fd19e07b" +[[package]] +name = "zerocopy" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c19fae0c8a9efc6a8281f2e623db8af1db9e57852e04cde3e754dd2dc29340f" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc56589e9ddd1f1c28d4b4b5c773ce232910a6bb67a70133d61c9e347585efe9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.36", +] + [[package]] name = "zstd" version = "0.12.4" diff --git a/py-polars/Cargo.toml b/py-polars/Cargo.toml index 3a5dca754f7f..bd73a8adb300 100644 --- a/py-polars/Cargo.toml +++ b/py-polars/Cargo.toml @@ -237,9 +237,6 @@ lto = "thin" codegen-units = 1 lto = "fat" -[patch.crates-io] -ahash = { git = "https://github.com/orlp/aHash", branch = "fix-arm-intrinsics" } - # This is ignored here; would be set in .cargo/config.toml. # Should not be used when packaging # target-cpu = "native"