forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (52 loc) · 1.31 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]
resolver = "2"
members = [
"crates/*",
"polars-cli",
"contribution/*",
"examples/*",
]
exclude = [
"examples/datasets",
]
[workspace.package]
version = "0.31.1"
[workspace.dependencies]
rayon = "1.6"
thiserror = "^1"
num-traits = "0.2"
ahash = "0.8"
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
hashbrown = { version = "0.14.0", features = ["rayon", "ahash"] }
indexmap = { version = "2", features = ["std"] }
bitflags = "1.3"
once_cell = "1"
memchr = "2"
smartstring = { version = "1" }
multiversion = "0.7"
either = "1.8"
strum_macros = "0.25"
version_check = "0.9.4"
[workspace.dependencies.arrow]
package = "arrow2"
git = "https://github.com/jorgecarleitao/arrow2"
# git = "https://github.com/ritchie46/arrow2"
rev = "d5c78e7ba45fcebfbafd55a82ba2601ee3ea9617"
# path = "../arrow2"
# branch = "duration_json"
version = "0.17.2"
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" }
# simd-json = { git = "https://github.com/ritchie46/simd-json", branch = "alignment" }