Skip to content

Commit

Permalink
polars rust 0.24.3 (#5015)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Sep 28, 2022
1 parent a25ca08 commit ee883e0
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
]

[workspace.package]
version = "0.24.2"
version = "0.24.3"

[workspace.dependencies]
rayon = "1.5"
Expand Down
14 changes: 7 additions & 7 deletions polars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars"
version = "0.24.2"
version = "0.24.3"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
keywords = ["dataframe", "query-engine", "arrow"]
Expand Down Expand Up @@ -268,12 +268,12 @@ bench = [
]

[dependencies]
polars-algo = { version = "0.24.2", path = "./polars-algo", optional = true }
polars-core = { version = "0.24.2", path = "./polars-core", features = ["docs", "private"], default-features = false }
polars-io = { version = "0.24.2", path = "./polars-io", features = ["private"], default-features = false, optional = true }
polars-lazy = { version = "0.24.2", path = "./polars-lazy", features = ["private"], default-features = false, optional = true }
polars-ops = { version = "0.24.2", path = "./polars-ops" }
polars-time = { version = "0.24.2", path = "./polars-time", default-features = false, optional = true }
polars-algo = { version = "0.24.3", path = "./polars-algo", optional = true }
polars-core = { version = "0.24.3", path = "./polars-core", features = ["docs", "private"], default-features = false }
polars-io = { version = "0.24.3", path = "./polars-io", features = ["private"], default-features = false, optional = true }
polars-lazy = { version = "0.24.3", path = "./polars-lazy", features = ["private"], default-features = false, optional = true }
polars-ops = { version = "0.24.3", path = "./polars-ops" }
polars-time = { version = "0.24.3", path = "./polars-time", default-features = false, optional = true }

[dev-dependencies]
ahash = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions polars/polars-algo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ description = "Algorithms built upon Polars primitives"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polars-core = { version = "0.24.2", path = "../polars-core", features = ["private", "dtype-categorical", "asof_join"], default-features = false }
polars-lazy = { version = "0.24.2", path = "../polars-lazy", features = ["asof_join", "concat_str", "strings"] }
polars-core = { version = "0.24.3", path = "../polars-core", features = ["private", "dtype-categorical", "asof_join"], default-features = false }
polars-lazy = { version = "0.24.3", path = "../polars-lazy", features = ["asof_join", "concat_str", "strings"] }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions polars/polars-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ jsonpath_lib = { version = "0.3.0", optional = true, git = "https://github.com/r
ndarray = { version = "0.15", optional = true, default_features = false }
num.workspace = true
once_cell = "1"
polars-arrow = { version = "0.24.2", path = "../polars-arrow", features = ["compute"] }
polars-utils = { version = "0.24.2", path = "../polars-utils" }
polars-arrow = { version = "0.24.3", path = "../polars-arrow", features = ["compute"] }
polars-utils = { version = "0.24.3", path = "../polars-utils" }
rand = { version = "0.8", optional = true, features = ["small_rng", "std"] }
rand_distr = { version = "0.4", optional = true }
rayon.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions polars/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ memchr = "2.4"
memmap = { package = "memmap2", version = "0.5.2", optional = true }
num.workspace = true
once_cell = "1"
polars-arrow = { version = "0.24.2", path = "../polars-arrow" }
polars-core = { version = "0.24.2", path = "../polars-core", features = ["private"], default-features = false }
polars-time = { version = "0.24.2", path = "../polars-time", features = ["private"], default-features = false, optional = true }
polars-utils = { version = "0.24.2", path = "../polars-utils" }
polars-arrow = { version = "0.24.3", path = "../polars-arrow" }
polars-core = { version = "0.24.3", path = "../polars-core", features = ["private"], default-features = false }
polars-time = { version = "0.24.3", path = "../polars-time", features = ["private"], default-features = false, optional = true }
polars-utils = { version = "0.24.3", path = "../polars-utils" }
rayon.workspace = true
regex = "1.5"
serde = { version = "1", features = ["derive"], optional = true }
Expand Down
12 changes: 6 additions & 6 deletions polars/polars-lazy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ rayon.workspace = true
regex = { version = "1.5", optional = true }
serde = { version = "1", features = ["derive", "rc"], optional = true }

polars-arrow = { version = "0.24.2", path = "../polars-arrow" }
polars-core = { version = "0.24.2", path = "../polars-core", features = ["lazy", "private", "zip_with", "random"], default-features = false }
polars-io = { version = "0.24.2", path = "../polars-io", features = ["lazy", "csv-file", "private"], default-features = false }
polars-ops = { version = "0.24.2", path = "../polars-ops", default-features = false }
polars-time = { version = "0.24.2", path = "../polars-time", optional = true }
polars-utils = { version = "0.24.2", path = "../polars-utils" }
polars-arrow = { version = "0.24.3", path = "../polars-arrow" }
polars-core = { version = "0.24.3", path = "../polars-core", features = ["lazy", "private", "zip_with", "random"], default-features = false }
polars-io = { version = "0.24.3", path = "../polars-io", features = ["lazy", "csv-file", "private"], default-features = false }
polars-ops = { version = "0.24.3", path = "../polars-ops", default-features = false }
polars-time = { version = "0.24.3", path = "../polars-time", optional = true }
polars-utils = { version = "0.24.3", path = "../polars-utils" }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions polars/polars-ops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ description = "More operations on polars data structures"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polars-arrow = { version = "0.24.2", path = "../polars-arrow", default-features = false }
polars-core = { version = "0.24.2", path = "../polars-core", features = ["private"], default-features = false }
polars-arrow = { version = "0.24.3", path = "../polars-arrow", default-features = false }
polars-core = { version = "0.24.3", path = "../polars-core", features = ["private"], default-features = false }

[features]
dtype-categorical = ["polars-core/dtype-categorical"]
Expand Down
4 changes: 2 additions & 2 deletions polars/polars-pipe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polars-core = { version = "0.24.2", path = "../polars-core", features = ["lazy", "private", "zip_with", "random"], default-features = false }
polars-lazy = { version = "0.24.2", path = "../polars-lazy", default-features = false, features = ["compile"] }
polars-core = { version = "0.24.3", path = "../polars-core", features = ["lazy", "private", "zip_with", "random"], default-features = false }
polars-lazy = { version = "0.24.3", path = "../polars-lazy", default-features = false, features = ["compile"] }
rayon.workspace = true
6 changes: 3 additions & 3 deletions polars/polars-time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ description = "Time related code for the polars dataframe library"
chrono = "0.4"
chrono-tz = { version = "0.6", optional = true }
lexical = { version = "6", default-features = false, features = ["std", "parse-floats", "parse-integers"] }
polars-arrow = { version = "0.24.2", path = "../polars-arrow", features = ["compute", "temporal"] }
polars-core = { version = "0.24.2", path = "../polars-core", default-features = false, features = ["private", "dtype-datetime", "dtype-duration", "dtype-time", "dtype-date"] }
polars-utils = { version = "0.24.2", path = "../polars-utils" }
polars-arrow = { version = "0.24.3", path = "../polars-arrow", features = ["compute", "temporal"] }
polars-core = { version = "0.24.3", path = "../polars-core", default-features = false, features = ["private", "dtype-datetime", "dtype-duration", "dtype-time", "dtype-date"] }
polars-utils = { version = "0.24.3", path = "../polars-utils" }
serde = { version = "1", features = ["derive"], optional = true }

[features]
Expand Down
18 changes: 9 additions & 9 deletions py-polars/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ee883e0

Please sign in to comment.