fastloess 0.1.0__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.
Files changed (39) hide show
  1. fastloess-0.1.0/CHANGELOG.md +12 -0
  2. fastloess-0.1.0/Cargo.lock +551 -0
  3. fastloess-0.1.0/Cargo.toml +54 -0
  4. fastloess-0.1.0/LICENSE-APACHE +201 -0
  5. fastloess-0.1.0/LICENSE-MIT +21 -0
  6. fastloess-0.1.0/PKG-INFO +416 -0
  7. fastloess-0.1.0/README.md +384 -0
  8. fastloess-0.1.0/docs/build/html/_images/confidence_vs_prediction_intervals.svg +107 -0
  9. fastloess-0.1.0/docs/build/html/_images/degree_comparison.svg +1225 -0
  10. fastloess-0.1.0/docs/build/html/_images/fraction_comparison.svg +1602 -0
  11. fastloess-0.1.0/docs/build/html/_images/fraction_effect_comparison.svg +185 -0
  12. fastloess-0.1.0/docs/build/html/_images/intervals_comparison.svg +1525 -0
  13. fastloess-0.1.0/docs/build/html/_images/loess_concept.svg +738 -0
  14. fastloess-0.1.0/docs/build/html/_images/lowess_smoothing_concept.svg +88 -0
  15. fastloess-0.1.0/docs/build/html/_images/multivariate_loess.svg +601 -0
  16. fastloess-0.1.0/docs/build/html/_images/robust_vs_standard_lowess.svg +147 -0
  17. fastloess-0.1.0/docs/build/html/_static/css/fonts/fontawesome-webfont.svg +2671 -0
  18. fastloess-0.1.0/docs/build/html/_static/images/confidence_vs_prediction_intervals.svg +107 -0
  19. fastloess-0.1.0/docs/build/html/_static/images/degree_comparison.svg +1225 -0
  20. fastloess-0.1.0/docs/build/html/_static/images/fraction_comparison.svg +1602 -0
  21. fastloess-0.1.0/docs/build/html/_static/images/fraction_effect_comparison.svg +185 -0
  22. fastloess-0.1.0/docs/build/html/_static/images/intervals_comparison.svg +1525 -0
  23. fastloess-0.1.0/docs/build/html/_static/images/loess_concept.svg +738 -0
  24. fastloess-0.1.0/docs/build/html/_static/images/lowess_smoothing_concept.svg +88 -0
  25. fastloess-0.1.0/docs/build/html/_static/images/multivariate_loess.svg +601 -0
  26. fastloess-0.1.0/docs/build/html/_static/images/robust_vs_standard_lowess.svg +147 -0
  27. fastloess-0.1.0/docs/build/html/_static/images/robustness_comparison.svg +815 -0
  28. fastloess-0.1.0/docs/source/_static/images/degree_comparison.svg +1225 -0
  29. fastloess-0.1.0/docs/source/_static/images/fraction_comparison.svg +1602 -0
  30. fastloess-0.1.0/docs/source/_static/images/intervals_comparison.svg +1525 -0
  31. fastloess-0.1.0/docs/source/_static/images/loess_concept.svg +738 -0
  32. fastloess-0.1.0/docs/source/_static/images/multivariate_loess.svg +601 -0
  33. fastloess-0.1.0/docs/source/_static/images/robustness_comparison.svg +815 -0
  34. fastloess-0.1.0/fastloess/__init__.py +449 -0
  35. fastloess-0.1.0/fastloess/__init__.pyi +117 -0
  36. fastloess-0.1.0/fastloess/__version__.py +1 -0
  37. fastloess-0.1.0/fastloess/py.typed +1 -0
  38. fastloess-0.1.0/pyproject.toml +49 -0
  39. fastloess-0.1.0/src/lib.rs +1002 -0
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ All notable changes to this package will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this package adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.1.0]
9
+
10
+ ### Added
11
+
12
+ - Added the python binding for `fastLoess`.
@@ -0,0 +1,551 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "approx"
7
+ version = "0.5.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
10
+ dependencies = [
11
+ "num-traits",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.5.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
19
+
20
+ [[package]]
21
+ name = "bytemuck"
22
+ version = "1.24.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
25
+
26
+ [[package]]
27
+ name = "crossbeam-deque"
28
+ version = "0.8.6"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
31
+ dependencies = [
32
+ "crossbeam-epoch",
33
+ "crossbeam-utils",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "crossbeam-epoch"
38
+ version = "0.9.18"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
41
+ dependencies = [
42
+ "crossbeam-utils",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "crossbeam-utils"
47
+ version = "0.8.21"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
50
+
51
+ [[package]]
52
+ name = "either"
53
+ version = "1.15.0"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
56
+
57
+ [[package]]
58
+ name = "fastLoess"
59
+ version = "0.1.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "97e7f52782e4901b52aacb733b98b0cdafdf3e207fae4c23c8eeb336f4f5deca"
62
+ dependencies = [
63
+ "loess-rs",
64
+ "ndarray",
65
+ "num-traits",
66
+ "rayon",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "fastLoess-py"
71
+ version = "0.1.0"
72
+ dependencies = [
73
+ "fastLoess",
74
+ "numpy",
75
+ "pyo3",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "glam"
80
+ version = "0.14.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
83
+
84
+ [[package]]
85
+ name = "glam"
86
+ version = "0.15.2"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
89
+
90
+ [[package]]
91
+ name = "glam"
92
+ version = "0.16.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
95
+
96
+ [[package]]
97
+ name = "glam"
98
+ version = "0.17.3"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
101
+
102
+ [[package]]
103
+ name = "glam"
104
+ version = "0.18.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
107
+
108
+ [[package]]
109
+ name = "glam"
110
+ version = "0.19.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
113
+
114
+ [[package]]
115
+ name = "glam"
116
+ version = "0.20.5"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
119
+
120
+ [[package]]
121
+ name = "glam"
122
+ version = "0.21.3"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
125
+
126
+ [[package]]
127
+ name = "glam"
128
+ version = "0.22.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
131
+
132
+ [[package]]
133
+ name = "glam"
134
+ version = "0.23.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
137
+
138
+ [[package]]
139
+ name = "glam"
140
+ version = "0.24.2"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
143
+
144
+ [[package]]
145
+ name = "glam"
146
+ version = "0.25.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
149
+
150
+ [[package]]
151
+ name = "glam"
152
+ version = "0.27.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
155
+
156
+ [[package]]
157
+ name = "glam"
158
+ version = "0.28.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
161
+
162
+ [[package]]
163
+ name = "glam"
164
+ version = "0.29.3"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
167
+
168
+ [[package]]
169
+ name = "glam"
170
+ version = "0.30.9"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "bd47b05dddf0005d850e5644cae7f2b14ac3df487979dbfff3b56f20b1a6ae46"
173
+
174
+ [[package]]
175
+ name = "heck"
176
+ version = "0.5.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
179
+
180
+ [[package]]
181
+ name = "indoc"
182
+ version = "2.0.7"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
185
+ dependencies = [
186
+ "rustversion",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "libc"
191
+ version = "0.2.179"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
194
+
195
+ [[package]]
196
+ name = "libm"
197
+ version = "0.2.15"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
200
+
201
+ [[package]]
202
+ name = "loess-rs"
203
+ version = "0.2.2"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "28c5386ca80845acd30c2439a23e36ba015f531f1307a21410f1299b1f3d38b4"
206
+ dependencies = [
207
+ "nalgebra",
208
+ "num-traits",
209
+ "wide",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "matrixmultiply"
214
+ version = "0.3.10"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
217
+ dependencies = [
218
+ "autocfg",
219
+ "rawpointer",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "memoffset"
224
+ version = "0.9.1"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
227
+ dependencies = [
228
+ "autocfg",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "nalgebra"
233
+ version = "0.34.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "c4d5b3eff5cd580f93da45e64715e8c20a3996342f1e466599cf7a267a0c2f5f"
236
+ dependencies = [
237
+ "approx",
238
+ "glam 0.14.0",
239
+ "glam 0.15.2",
240
+ "glam 0.16.0",
241
+ "glam 0.17.3",
242
+ "glam 0.18.0",
243
+ "glam 0.19.0",
244
+ "glam 0.20.5",
245
+ "glam 0.21.3",
246
+ "glam 0.22.0",
247
+ "glam 0.23.0",
248
+ "glam 0.24.2",
249
+ "glam 0.25.0",
250
+ "glam 0.27.0",
251
+ "glam 0.28.0",
252
+ "glam 0.29.3",
253
+ "glam 0.30.9",
254
+ "matrixmultiply",
255
+ "num-complex",
256
+ "num-rational",
257
+ "num-traits",
258
+ "simba",
259
+ "typenum",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "ndarray"
264
+ version = "0.17.1"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "0c7c9125e8f6f10c9da3aad044cc918cf8784fa34de857b1aa68038eb05a50a9"
267
+ dependencies = [
268
+ "matrixmultiply",
269
+ "num-complex",
270
+ "num-integer",
271
+ "num-traits",
272
+ "portable-atomic",
273
+ "portable-atomic-util",
274
+ "rawpointer",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "num-bigint"
279
+ version = "0.4.6"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
282
+ dependencies = [
283
+ "num-integer",
284
+ "num-traits",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "num-complex"
289
+ version = "0.4.6"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
292
+ dependencies = [
293
+ "num-traits",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "num-integer"
298
+ version = "0.1.46"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
301
+ dependencies = [
302
+ "num-traits",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "num-rational"
307
+ version = "0.4.2"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
310
+ dependencies = [
311
+ "num-bigint",
312
+ "num-integer",
313
+ "num-traits",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "num-traits"
318
+ version = "0.2.19"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
321
+ dependencies = [
322
+ "autocfg",
323
+ "libm",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "numpy"
328
+ version = "0.27.1"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "7aac2e6a6e4468ffa092ad43c39b81c79196c2bb773b8db4085f695efe3bba17"
331
+ dependencies = [
332
+ "libc",
333
+ "ndarray",
334
+ "num-complex",
335
+ "num-integer",
336
+ "num-traits",
337
+ "pyo3",
338
+ "pyo3-build-config",
339
+ "rustc-hash",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "once_cell"
344
+ version = "1.21.3"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
347
+
348
+ [[package]]
349
+ name = "paste"
350
+ version = "1.0.15"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
353
+
354
+ [[package]]
355
+ name = "portable-atomic"
356
+ version = "1.13.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
359
+
360
+ [[package]]
361
+ name = "portable-atomic-util"
362
+ version = "0.2.4"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
365
+ dependencies = [
366
+ "portable-atomic",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "proc-macro2"
371
+ version = "1.0.105"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
374
+ dependencies = [
375
+ "unicode-ident",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "pyo3"
380
+ version = "0.27.2"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
383
+ dependencies = [
384
+ "indoc",
385
+ "libc",
386
+ "memoffset",
387
+ "once_cell",
388
+ "portable-atomic",
389
+ "pyo3-build-config",
390
+ "pyo3-ffi",
391
+ "pyo3-macros",
392
+ "unindent",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "pyo3-build-config"
397
+ version = "0.27.2"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
400
+ dependencies = [
401
+ "target-lexicon",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "pyo3-ffi"
406
+ version = "0.27.2"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
409
+ dependencies = [
410
+ "libc",
411
+ "pyo3-build-config",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "pyo3-macros"
416
+ version = "0.27.2"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
419
+ dependencies = [
420
+ "proc-macro2",
421
+ "pyo3-macros-backend",
422
+ "quote",
423
+ "syn",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "pyo3-macros-backend"
428
+ version = "0.27.2"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
431
+ dependencies = [
432
+ "heck",
433
+ "proc-macro2",
434
+ "pyo3-build-config",
435
+ "quote",
436
+ "syn",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "quote"
441
+ version = "1.0.43"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
444
+ dependencies = [
445
+ "proc-macro2",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "rawpointer"
450
+ version = "0.2.1"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
453
+
454
+ [[package]]
455
+ name = "rayon"
456
+ version = "1.11.0"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
459
+ dependencies = [
460
+ "either",
461
+ "rayon-core",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "rayon-core"
466
+ version = "1.13.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
469
+ dependencies = [
470
+ "crossbeam-deque",
471
+ "crossbeam-utils",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "rustc-hash"
476
+ version = "2.1.1"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
479
+
480
+ [[package]]
481
+ name = "rustversion"
482
+ version = "1.0.22"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
485
+
486
+ [[package]]
487
+ name = "safe_arch"
488
+ version = "0.7.4"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
491
+ dependencies = [
492
+ "bytemuck",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "simba"
497
+ version = "0.9.1"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
500
+ dependencies = [
501
+ "approx",
502
+ "num-complex",
503
+ "num-traits",
504
+ "paste",
505
+ "wide",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "syn"
510
+ version = "2.0.113"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "678faa00651c9eb72dd2020cbdf275d92eccb2400d568e419efdd64838145cb4"
513
+ dependencies = [
514
+ "proc-macro2",
515
+ "quote",
516
+ "unicode-ident",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "target-lexicon"
521
+ version = "0.13.4"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
524
+
525
+ [[package]]
526
+ name = "typenum"
527
+ version = "1.19.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
530
+
531
+ [[package]]
532
+ name = "unicode-ident"
533
+ version = "1.0.22"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
536
+
537
+ [[package]]
538
+ name = "unindent"
539
+ version = "0.2.4"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
542
+
543
+ [[package]]
544
+ name = "wide"
545
+ version = "0.7.33"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
548
+ dependencies = [
549
+ "bytemuck",
550
+ "safe_arch",
551
+ ]
@@ -0,0 +1,54 @@
1
+ [package]
2
+ name = "fastLoess-py"
3
+ version = "0.1.0"
4
+ edition = "2024"
5
+ rust-version = "1.85.0"
6
+
7
+ # Metadata
8
+ description = "High-level, fast LOESS smoothing built on top of the fastLoess Rust crate."
9
+ authors = ["Amir Valizadeh <thisisamirv@gmail.com>"]
10
+ license = "MIT OR Apache-2.0"
11
+ readme = "README.md"
12
+
13
+ # Links
14
+ repository = "https://github.com/thisisamirv/fastLoess-py"
15
+ homepage = "https://github.com/thisisamirv/fastLoess-py"
16
+
17
+ # Categories
18
+ keywords = ["loess", "smoothing", "statistics", "regression", "bioinformatics"]
19
+ categories = ["science", "algorithms"]
20
+
21
+ include = [
22
+ "src/**/*",
23
+ "docs/**/*.svg",
24
+ "fastloess/**/*",
25
+ "Cargo.toml",
26
+ "README.md",
27
+ "LICENSE-MIT",
28
+ "LICENSE-APACHE",
29
+ "CHANGELOG.md",
30
+ ]
31
+
32
+ # Build
33
+ [dependencies]
34
+ fastLoess = { version = "0.1", features = ["dev", "cpu"] }
35
+ pyo3 = { version = "0.27.2", features = ["extension-module"] }
36
+ numpy = "0.27.1"
37
+
38
+ [lib]
39
+ name = "fastloess"
40
+ crate-type = ["cdylib"]
41
+
42
+ [features]
43
+ default = []
44
+ dev = []
45
+
46
+ [profile.release]
47
+ opt-level = 3
48
+ lto = true
49
+ codegen-units = 1
50
+
51
+ # Document all features
52
+ [package.metadata.docs.rs]
53
+ all-features = true
54
+ rustdoc-args = ["--cfg", "docsrs"]