diff --git a/Cargo.lock b/Cargo.lock index 83d09a490d57..1dc129ec2aff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -127,9 +127,9 @@ dependencies = [ [[package]] name = "argminmax" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "202108b46429b765ef483f8a24d5c46f48c14acfdacc086dd4ab6dddf6bcdbd2" +checksum = "52424b59d69d69d5056d508b260553afd91c57e21849579cd1f50ee8b8b88eaa" dependencies = [ "num-traits", ] diff --git a/crates/polars-ops/Cargo.toml b/crates/polars-ops/Cargo.toml index 7264aa882e7a..2caf329d430a 100644 --- a/crates/polars-ops/Cargo.toml +++ b/crates/polars-ops/Cargo.toml @@ -17,7 +17,7 @@ polars-utils = { workspace = true } ahash = { workspace = true } aho-corasick = { workspace = true, optional = true } -argminmax = { version = "0.6.1", default-features = false, features = ["float"] } +argminmax = { version = "0.6.2", default-features = false, features = ["float"] } arrow = { workspace = true } base64 = { workspace = true, optional = true } bytemuck = { workspace = true } @@ -50,7 +50,7 @@ rand = { workspace = true, features = ["small_rng"] } version_check = { workspace = true } [features] -simd = [] +simd = ["argminmax/nightly_simd"] nightly = ["polars-utils/nightly"] dtype-categorical = ["polars-core/dtype-categorical"] dtype-date = ["polars-core/dtype-date", "polars-core/temporal"]