forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (52 loc) · 1.34 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
members = [
"polars",
"polars/polars-core",
"polars/polars-io",
"polars/polars-time",
"polars/polars-utils",
"polars/polars-ops",
"polars/polars-algo",
"polars/polars-lazy",
"polars/polars-lazy/polars-plan",
"polars/polars-lazy/polars-pipe",
"polars/polars-sql",
"examples/read_csv",
"examples/read_parquet",
"examples/read_parquet_cloud",
"examples/python_rust_compiled_function",
]
[workspace.package]
version = "0.26.1"
[workspace.dependencies]
rayon = "1.5"
thiserror = "^1"
num = "0.4"
ahash = "0.8"
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
# todo! remove
anyhow = "1"
hashbrown = { version = "0.13.1", features = ["rayon", "ahash"] }
bitflags = "1.3"
[workspace.dependencies.arrow]
package = "arrow2"
# git = "https://github.com/jorgecarleitao/arrow2"
git = "https://github.com/ritchie46/arrow2"
# rev = "368aacc173a27e2a763d2c6396682a688e5a2707"
# path = "../arrow2"
branch = "polars_2022-12-30"
version = "0.15"
default-features = false
features = [
"compute_aggregate",
"compute_arithmetics",
"compute_boolean",
"compute_boolean_kleene",
"compute_cast",
"compute_comparison",
"compute_concatenate",
"compute_filter",
"compute_if_then_else",
]
[patch.crates-io]
# packed_simd_2 = { git = "https://github.com/rust-lang/packed_simd", rev = "e57c7ba11386147e6d2cbad7c88f376aab4bdc86" }