forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
159 lines (150 loc) · 5.47 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[workspace]
resolver = "2"
members = [
"crates/*",
"docs/source/src/rust",
# "examples/*",
"py-polars",
]
default-members = [
"crates/*",
]
# exclude = [
# "examples/datasets",
# ]
[workspace.package]
version = "0.43.1"
authors = ["Ritchie Vink <[email protected]>"]
edition = "2021"
homepage = "https://www.pola.rs/"
license = "MIT"
repository = "https://github.com/pola-rs/polars"
[workspace.dependencies]
ahash = ">=0.8.5"
aho-corasick = "1.1"
arboard = { version = "3.4.0", default-features = false }
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"
atoi_simd = "0.15.5"
atomic-waker = "1"
avro-schema = { version = "0.3" }
base64 = "0.22.0"
bitflags = "2"
bytemuck = { version = "1.11", features = ["derive", "extern_crate_alloc"] }
bytes = { version = "1.7" }
chrono = { version = "0.4.31", default-features = false, features = ["std"] }
chrono-tz = "0.8.1"
ciborium = "0.2"
compact_str = { version = "0.8.0", features = ["serde"] }
crossbeam-channel = "0.5.8"
crossbeam-deque = "0.8.5"
crossbeam-queue = "0.3"
crossbeam-utils = "0.8.20"
either = "1.11"
ethnum = "1.3.2"
fallible-streaming-iterator = "0.1.9"
fast-float = { version = "0.2" }
flate2 = { version = "1", default-features = false }
futures = "0.3.25"
hashbrown = { version = "0.15.0", features = ["rayon", "serde"] }
# https://github.com/rust-lang/hashbrown/issues/564
hashbrown_old_nightly_hack = { package = "hashbrown", version = "0.14.5", features = ["rayon", "serde"] }
hex = "0.4.3"
indexmap = { version = "2", features = ["std", "serde"] }
itoa = "1.0.6"
itoap = { version = "1", features = ["simd"] }
libc = "0.2"
memchr = "2.6"
memmap = { package = "memmap2", version = "0.7" }
multiversion = "0.7"
ndarray = { version = "0.15", default-features = false }
num-traits = "0.2"
object_store = { version = "0.10", default-features = false }
once_cell = "1"
parking_lot = "0.12"
percent-encoding = "2.3"
pin-project-lite = "0.2"
pyo3 = "0.21"
rand = "0.8"
rand_distr = "0.4"
raw-cpuid = "11"
rayon = "1.9"
recursive = "0.1"
regex = "1.9"
reqwest = { version = "0.12", default-features = false }
ryu = "1.0.13"
serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = "1"
simd-json = { version = "0.14", features = ["known-key"] }
simdutf8 = "0.1.4"
slotmap = "1"
sqlparser = "0.49"
stacker = "0.1"
streaming-iterator = "0.1.9"
strength_reduce = "0.2"
strum_macros = "0.26"
thiserror = "1"
tokio = "1.26"
tokio-util = "0.7.8"
unicode-reverse = "1.0.8"
url = "2.4"
uuid = { version = "1.7.0", features = ["v4"] }
version_check = "0.9.4"
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
zstd = "0.13"
polars = { version = "0.43.1", path = "crates/polars", default-features = false }
polars-compute = { version = "0.43.1", path = "crates/polars-compute", default-features = false }
polars-core = { version = "0.43.1", path = "crates/polars-core", default-features = false }
polars-error = { version = "0.43.1", path = "crates/polars-error", default-features = false }
polars-expr = { version = "0.43.1", path = "crates/polars-expr", default-features = false }
polars-ffi = { version = "0.43.1", path = "crates/polars-ffi", default-features = false }
polars-io = { version = "0.43.1", path = "crates/polars-io", default-features = false }
polars-json = { version = "0.43.1", path = "crates/polars-json", default-features = false }
polars-lazy = { version = "0.43.1", path = "crates/polars-lazy", default-features = false }
polars-mem-engine = { version = "0.43.1", path = "crates/polars-mem-engine", default-features = false }
polars-ops = { version = "0.43.1", path = "crates/polars-ops", default-features = false }
polars-parquet = { version = "0.43.1", path = "crates/polars-parquet", default-features = false }
polars-pipe = { version = "0.43.1", path = "crates/polars-pipe", default-features = false }
polars-plan = { version = "0.43.1", path = "crates/polars-plan", default-features = false }
polars-python = { version = "0.43.1", path = "crates/polars-python", default-features = false }
polars-row = { version = "0.43.1", path = "crates/polars-row", default-features = false }
polars-schema = { version = "0.43.1", path = "crates/polars-schema", default-features = false }
polars-sql = { version = "0.43.1", path = "crates/polars-sql", default-features = false }
polars-stream = { version = "0.43.1", path = "crates/polars-stream", default-features = false }
polars-time = { version = "0.43.1", path = "crates/polars-time", default-features = false }
polars-utils = { version = "0.43.1", path = "crates/polars-utils", default-features = false }
[workspace.dependencies.arrow-format]
package = "polars-arrow-format"
version = "0.1.0"
[workspace.dependencies.arrow]
package = "polars-arrow"
version = "0.43.1"
path = "crates/polars-arrow"
default-features = false
features = [
"compute_aggregate",
"compute_arithmetics",
"compute_bitwise",
"compute_boolean",
"compute_boolean_kleene",
"compute_cast",
"compute_comparison",
]
[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"