rspandas 2.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,43 @@
1
+ # Rust
2
+ target/
3
+ Cargo.lock
4
+
5
+ # Python
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+ *.so
10
+ *.egg-info/
11
+ dist/
12
+ build/
13
+ tests/
14
+ test/
15
+ test_*.py
16
+ *.egg
17
+ .venv/
18
+ venv/
19
+ uv.lock
20
+
21
+ # IDE
22
+ .vscode/
23
+ .idea/
24
+ *.swp
25
+ *.swo
26
+ *~
27
+
28
+ # OS
29
+ .DS_Store
30
+ Thumbs.db
31
+
32
+ # Data / plots
33
+ testing/
34
+ main*.py
35
+ out/
36
+
37
+ wheelhouse/
38
+ N237S NB.csv
39
+ plots*.py
40
+ # Environment
41
+ .venv
42
+ .env
43
+ .env.local
@@ -0,0 +1 @@
1
+ 3.13
@@ -0,0 +1,455 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "atoi_simd"
13
+ version = "0.17.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
16
+ dependencies = [
17
+ "debug_unsafe",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "bumpalo"
22
+ version = "3.20.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
25
+
26
+ [[package]]
27
+ name = "byteorder"
28
+ version = "1.5.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
31
+
32
+ [[package]]
33
+ name = "calamine"
34
+ version = "0.35.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "8822fe6253ca47aa5ad9a3be09f6fe7cd20c6a74e41b0aa42e8f4e3d523508df"
37
+ dependencies = [
38
+ "atoi_simd",
39
+ "byteorder",
40
+ "codepage",
41
+ "encoding_rs",
42
+ "fast-float2",
43
+ "log",
44
+ "quick-xml",
45
+ "serde",
46
+ "zip",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "cfg-if"
51
+ version = "1.0.4"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
54
+
55
+ [[package]]
56
+ name = "codepage"
57
+ version = "0.1.2"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
60
+ dependencies = [
61
+ "encoding_rs",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "crc32fast"
66
+ version = "1.5.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
69
+ dependencies = [
70
+ "cfg-if",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "crossbeam-deque"
75
+ version = "0.8.6"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
78
+ dependencies = [
79
+ "crossbeam-epoch",
80
+ "crossbeam-utils",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "crossbeam-epoch"
85
+ version = "0.9.18"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
88
+ dependencies = [
89
+ "crossbeam-utils",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "crossbeam-utils"
94
+ version = "0.8.21"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
97
+
98
+ [[package]]
99
+ name = "csv"
100
+ version = "1.4.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
103
+ dependencies = [
104
+ "csv-core",
105
+ "itoa",
106
+ "ryu",
107
+ "serde_core",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "csv-core"
112
+ version = "0.1.13"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
115
+ dependencies = [
116
+ "memchr",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "debug_unsafe"
121
+ version = "0.1.4"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
124
+
125
+ [[package]]
126
+ name = "either"
127
+ version = "1.16.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
130
+
131
+ [[package]]
132
+ name = "encoding_rs"
133
+ version = "0.8.35"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
136
+ dependencies = [
137
+ "cfg-if",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "equivalent"
142
+ version = "1.0.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
145
+
146
+ [[package]]
147
+ name = "fast-float2"
148
+ version = "0.2.3"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
151
+
152
+ [[package]]
153
+ name = "flate2"
154
+ version = "1.1.9"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
157
+ dependencies = [
158
+ "miniz_oxide",
159
+ "zlib-rs",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "hashbrown"
164
+ version = "0.17.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
167
+
168
+ [[package]]
169
+ name = "heck"
170
+ version = "0.5.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
173
+
174
+ [[package]]
175
+ name = "indexmap"
176
+ version = "2.14.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
179
+ dependencies = [
180
+ "equivalent",
181
+ "hashbrown",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "itoa"
186
+ version = "1.0.18"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
189
+
190
+ [[package]]
191
+ name = "libc"
192
+ version = "0.2.186"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
195
+
196
+ [[package]]
197
+ name = "log"
198
+ version = "0.4.32"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
201
+
202
+ [[package]]
203
+ name = "memchr"
204
+ version = "2.8.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
207
+
208
+ [[package]]
209
+ name = "miniz_oxide"
210
+ version = "0.8.9"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
213
+ dependencies = [
214
+ "adler2",
215
+ "simd-adler32",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "once_cell"
220
+ version = "1.21.4"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
223
+
224
+ [[package]]
225
+ name = "portable-atomic"
226
+ version = "1.13.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
229
+
230
+ [[package]]
231
+ name = "proc-macro2"
232
+ version = "1.0.106"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
235
+ dependencies = [
236
+ "unicode-ident",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "pyo3"
241
+ version = "0.29.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
244
+ dependencies = [
245
+ "libc",
246
+ "once_cell",
247
+ "portable-atomic",
248
+ "pyo3-build-config",
249
+ "pyo3-ffi",
250
+ "pyo3-macros",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "pyo3-build-config"
255
+ version = "0.29.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
258
+ dependencies = [
259
+ "target-lexicon",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "pyo3-ffi"
264
+ version = "0.29.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
267
+ dependencies = [
268
+ "libc",
269
+ "pyo3-build-config",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "pyo3-macros"
274
+ version = "0.29.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
277
+ dependencies = [
278
+ "proc-macro2",
279
+ "pyo3-macros-backend",
280
+ "quote",
281
+ "syn",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "pyo3-macros-backend"
286
+ version = "0.29.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
289
+ dependencies = [
290
+ "heck",
291
+ "proc-macro2",
292
+ "quote",
293
+ "syn",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "quick-xml"
298
+ version = "0.39.4"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
301
+ dependencies = [
302
+ "encoding_rs",
303
+ "memchr",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "quote"
308
+ version = "1.0.45"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
311
+ dependencies = [
312
+ "proc-macro2",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "rayon"
317
+ version = "1.12.0"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
320
+ dependencies = [
321
+ "either",
322
+ "rayon-core",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "rayon-core"
327
+ version = "1.13.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
330
+ dependencies = [
331
+ "crossbeam-deque",
332
+ "crossbeam-utils",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "rspandas"
337
+ version = "2.0.1"
338
+ dependencies = [
339
+ "calamine",
340
+ "csv",
341
+ "pyo3",
342
+ "rayon",
343
+ "rust_xlsxwriter",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "rust_xlsxwriter"
348
+ version = "0.95.0"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "f281b687352597d29efaad39701d1167d5c48aa76fb973e392bc13e9d44e7f36"
351
+ dependencies = [
352
+ "zip",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "ryu"
357
+ version = "1.0.23"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
360
+
361
+ [[package]]
362
+ name = "serde"
363
+ version = "1.0.228"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
366
+ dependencies = [
367
+ "serde_core",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "serde_core"
372
+ version = "1.0.228"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
375
+ dependencies = [
376
+ "serde_derive",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "serde_derive"
381
+ version = "1.0.228"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
384
+ dependencies = [
385
+ "proc-macro2",
386
+ "quote",
387
+ "syn",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "simd-adler32"
392
+ version = "0.3.9"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
395
+
396
+ [[package]]
397
+ name = "syn"
398
+ version = "2.0.118"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
401
+ dependencies = [
402
+ "proc-macro2",
403
+ "quote",
404
+ "unicode-ident",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "target-lexicon"
409
+ version = "0.13.5"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
412
+
413
+ [[package]]
414
+ name = "typed-path"
415
+ version = "0.12.3"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
418
+
419
+ [[package]]
420
+ name = "unicode-ident"
421
+ version = "1.0.24"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
424
+
425
+ [[package]]
426
+ name = "zip"
427
+ version = "7.2.0"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
430
+ dependencies = [
431
+ "crc32fast",
432
+ "flate2",
433
+ "indexmap",
434
+ "memchr",
435
+ "typed-path",
436
+ "zopfli",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "zlib-rs"
441
+ version = "0.6.3"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
444
+
445
+ [[package]]
446
+ name = "zopfli"
447
+ version = "0.8.3"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
450
+ dependencies = [
451
+ "bumpalo",
452
+ "crc32fast",
453
+ "log",
454
+ "simd-adler32",
455
+ ]
@@ -0,0 +1,24 @@
1
+ [package]
2
+ name = "rspandas"
3
+ version = "2.0.1"
4
+ edition = "2024"
5
+ readme = "README.md"
6
+
7
+ [lib]
8
+ name = "rspandas"
9
+ crate-type = ["cdylib", "rlib"]
10
+
11
+ [features]
12
+ extension-module = ["pyo3/extension-module"]
13
+ default = ["extension-module"]
14
+
15
+ [dependencies]
16
+ pyo3 = { version = "0.29.0" }
17
+ csv = "1.4.0"
18
+ rayon = "1.12.0"
19
+ calamine = "0.35.0"
20
+ rust_xlsxwriter = "0.95.0"
21
+
22
+ [profile.release]
23
+ opt-level = 3
24
+ lto = true