Skip to content

Commit

Permalink
chore: upgrade versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Nov 1, 2024
1 parent 1665cbd commit f303617
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions polars_distance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ name = "polars_distance"
crate-type = ["cdylib"]

[dependencies]
polars = { version = "0.38.3" , features = ["dtype-struct", "dtype-array", 'dtype-categorical', 'dtype-u16', 'dtype-u8', 'dtype-i8','dtype-i16']}
polars-core = {version = "0.38.3"}
polars-arrow = {version = "0.38.3"}
pyo3 = { version = "0.20.3", features = ["extension-module", "abi3-py38"] }
pyo3-polars = { version = "0.12", features = ["derive"] }
polars = { version = "0.44.2" , features = ["dtype-struct", "dtype-array", 'dtype-categorical', 'dtype-u16', 'dtype-u8', 'dtype-i8','dtype-i16']}
polars-core = {version = "0.44.2"}
polars-arrow = {version = "0.44.2"}
pyo3 = { version = "0.21", features = ["extension-module", "abi3-py38"] }
pyo3-polars = { version = "0.18", features = ["derive", 'dtype-array','dtype-categorical','dtype-struct'] }
serde = { version = "1", features = ["derive"] }
distances = { version = "1.6.3"}
rapidfuzz = { version = "0.5.0"}
Expand Down
1 change: 1 addition & 0 deletions polars_distance/rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nightly
2 changes: 1 addition & 1 deletion polars_distance/src/other_dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ where
})
.collect();

Ok(out.with_name("haversine"))
Ok(out.with_name("haversine".into()))
}

0 comments on commit f303617

Please sign in to comment.