forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
131 lines (123 loc) · 4.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[workspace]
resolver = "2"
members = [
"crates/*",
"docs/src/rust",
# "examples/*",
"py-polars",
]
default-members = [
"crates/*",
]
# exclude = [
# "examples/datasets",
# ]
[workspace.package]
version = "0.34.2"
authors = ["Ritchie Vink <[email protected]>"]
edition = "2021"
homepage = "https://www.pola.rs/"
repository = "https://github.com/pola-rs/polars"
license = "MIT"
[workspace.dependencies]
ahash = ">=0.8.5"
arrow-array = { version = ">=41", default-features = false }
arrow-buffer = { version = ">=41", default-features = false }
arrow-data = { version = ">=41", default-features = false }
arrow-schema = { version = ">=41", default-features = false }
atoi = "2"
avro-schema = { version = "0.3" }
base64 = "0.21.2"
bitflags = "2"
bytemuck = { version = "1", features = ["derive", "extern_crate_alloc"] }
chrono = { version = "0.4.31", default-features = false, features = ["std"] }
chrono-tz = "0.8.1"
ciborium = "0.2"
crossbeam-channel = "0.5.8"
crossbeam-queue = "0.3"
either = "1.9"
ethnum = "1.3.2"
fallible-streaming-iterator = "0.1.9"
futures = "0.3.25"
hashbrown = { version = "0.14", features = ["rayon", "ahash"] }
hex = "0.4.3"
indexmap = { version = "2", features = ["std"] }
itoa = "1.0.6"
lexical-core = "0.8.5"
memchr = "2.6"
multiversion = "0.7"
ndarray = { version = "0.15", default-features = false }
num-traits = "0.2"
object_store = { version = "0.8", default-features = false }
once_cell = "1"
parquet2 = { version = "0.17.2", features = ["async"], default-features = false }
percent-encoding = "2.3"
pyo3 = "0.20"
rand = "0.8"
rand_distr = "0.4"
rayon = "1.8"
regex = "1.9"
reqwest = { version = "0.11", default-features = false }
ryu = "1.0.13"
serde = "1.0.188"
serde_json = "1"
simd-json = { version = "0.13", features = ["known-key"] }
simdutf8 = "0.1.4"
smartstring = "1"
sqlparser = "0.39"
streaming-iterator = "0.1.9"
strum_macros = "0.25"
thiserror = "1"
tokio = "1.26"
tokio-util = "0.7.8"
url = "2.4"
version_check = "0.9.4"
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
zstd = "0.13"
polars = { version = "0.34.2", path = "crates/polars", default-features = false }
polars-algo = { version = "0.34.2", path = "crates/polars-algo", default-features = false }
polars-core = { version = "0.34.2", path = "crates/polars-core", default-features = false }
polars-error = { version = "0.34.2", path = "crates/polars-error", default-features = false }
polars-ffi = { version = "0.34.2", path = "crates/polars-ffi", default-features = false }
polars-io = { version = "0.34.2", path = "crates/polars-io", default-features = false }
polars-json = { version = "0.34.2", path = "crates/polars-json", default-features = false }
polars-lazy = { version = "0.34.2", path = "crates/polars-lazy", default-features = false }
polars-ops = { version = "0.34.2", path = "crates/polars-ops", default-features = false }
polars-parquet = { version = "0.34.2", path = "crates/polars-parquet", default-features = false }
polars-pipe = { version = "0.34.2", path = "crates/polars-pipe", default-features = false }
polars-plan = { version = "0.34.2", path = "crates/polars-plan", default-features = false }
polars-row = { version = "0.34.2", path = "crates/polars-row", default-features = false }
polars-sql = { version = "0.34.2", path = "crates/polars-sql", default-features = false }
polars-time = { version = "0.34.2", path = "crates/polars-time", default-features = false }
polars-utils = { version = "0.34.2", path = "crates/polars-utils", default-features = false }
[workspace.dependencies.arrow]
package = "polars-arrow"
version = "0.34.2"
path = "crates/polars-arrow"
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" }
[profile.opt-dev]
inherits = "dev"
opt-level = 1
[profile.debug-release]
inherits = "release"
debug = true
incremental = true
codegen-units = 16
lto = "thin"
[profile.release]
codegen-units = 1
lto = "fat"