Skip to content

Commit ec2fd47

Browse files
authored
Remove multiversion dependency (#3452)
1 parent 61a77a5 commit ec2fd47

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

arrow-arith/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ arrow-data = { version = "30.0.0", path = "../arrow-data" }
4444
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
4545
chrono = { version = "0.4.23", default-features = false }
4646
half = { version = "2.1", default-features = false }
47-
multiversion = { version = "0.7.1", default-features = false }
4847
num = { version = "0.4", default-features = false, features = ["std"] }
4948

5049
[dev-dependencies]

arrow-arith/src/aggregate.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
//! Defines aggregations over Arrow arrays.
1919
20-
use multiversion::multiversion;
21-
2220
use arrow_array::cast::*;
2321
use arrow_array::iterator::ArrayIter;
2422
use arrow_array::*;
@@ -104,7 +102,6 @@ pub fn max_boolean(array: &BooleanArray) -> Option<bool> {
104102
}
105103

106104
/// Helper to compute min/max of [`ArrayAccessor`].
107-
#[multiversion(targets("x86_64+avx"))]
108105
fn min_max_helper<T, A: ArrayAccessor<Item = T>, F>(array: A, cmp: F) -> Option<T>
109106
where
110107
F: Fn(&T, &T) -> bool,

0 commit comments

Comments
 (0)