-
Notifications
You must be signed in to change notification settings - Fork 44
/
Cargo.toml
29 lines (26 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[workspace]
resolver = "2"
members = [
"example/derive_expression/expression_lib",
"example/extend_polars_python_dispatch/extend_polars",
"example/io_plugin/io_plugin",
"pyo3-polars",
"pyo3-polars-derive",
]
[workspace.dependencies]
polars = { version = "0.44.0", default-features = false }
polars-core = { version = "0.44.0", default-features = false }
polars-ffi = { version = "0.44.0", default-features = false }
polars-plan = { version = "0.44.0", default-feautres = false }
polars-lazy = { version = "0.44.0", default-features = false }
[workspace.dependencies.arrow]
package = "polars-arrow"
version = "0.44.0"
path = "../polars/crates/polars-arrow"
default-features = false
#[patch.crates-io]
#polars = { git = "https://github.com/pola-rs/polars.git" }
#polars-core = { git = "https://github.com/pola-rs/polars.git" }
#polars-ffi = { git = "https://github.com/pola-rs/polars.git" }
#polars-plan = { git = "https://github.com/pola-rs/polars.git" }
#polars-lazy = { git = "https://github.com/pola-rs/polars.git" }