Skip to content

Commit

Permalink
move polars to workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
nreinicke committed Aug 15, 2023
1 parent c8f69be commit 2508f90
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
3 changes: 3 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ opt-level = 3
anyhow = "1.0.71"
pyo3 = "0.19"
pyo3-log = "*"
polars = {version = "0.30"}
polars-lazy = {version = "0.30"}
pyo3-polars = {version = "0.4.1"}
uom = { version = "0.35.0", features = ["use_serde"] }
6 changes: 3 additions & 3 deletions rust/altrios-core-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ edition = "2021"
altrios-core = { path = "../altrios-core", features = ["pyo3"] }
pyo3 = { workspace = true, features = ["extension-module", "anyhow"] }
pyo3-log = { workspace = true}
polars = {version = "0.30.0"}
polars-lazy = {version = "0.30.0"}
pyo3-polars = {version = "0.4.1"}
polars = {workspace = true}
polars-lazy = {workspace = true}
pyo3-polars = {workspace = true}

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
19 changes: 15 additions & 4 deletions rust/altrios-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,23 @@ anyhow = { workspace = true }
readonly = "0.2.3"
duplicate = "0.4.1"
nohash-hasher = "0.2.0"
polars = {version = "0.30", features = ["dtype-categorical","rank","strings"]}
polars-lazy = {version = "0.30", features = ["dtype-categorical","rank","strings"]}
pyo3-polars = {version = "0.4.1", features = ["lazy"]}
polars = { workspace = true, features = [
"dtype-categorical",
"rank",
"strings",
] }
polars-lazy = { workspace = true, features = [
"dtype-categorical",
"rank",
"strings",
] }
pyo3-polars = { workspace = true, features = ["lazy"] }

# optional
pyo3 = { workspace = true, features = ["extension-module", "anyhow"], optional = true }
pyo3 = { workspace = true, features = [
"extension-module",
"anyhow",
], optional = true }
serde-this-or-that = "0.4.2"
project-root = "0.2.2"

Expand Down

0 comments on commit 2508f90

Please sign in to comment.