whenever-none 0.9.5.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.
Files changed (100) hide show
  1. whenever_none-0.9.5.1/.cargo/config.toml +15 -0
  2. whenever_none-0.9.5.1/Cargo.lock +697 -0
  3. whenever_none-0.9.5.1/Cargo.toml +50 -0
  4. whenever_none-0.9.5.1/LICENSE +21 -0
  5. whenever_none-0.9.5.1/MANIFEST.in +10 -0
  6. whenever_none-0.9.5.1/PKG-INFO +65 -0
  7. whenever_none-0.9.5.1/README.md +28 -0
  8. whenever_none-0.9.5.1/_custom_pybuild/backend.py +25 -0
  9. whenever_none-0.9.5.1/build.rs +5 -0
  10. whenever_none-0.9.5.1/pyproject.toml +120 -0
  11. whenever_none-0.9.5.1/pysrc/whenever/__init__.py +61 -0
  12. whenever_none-0.9.5.1/pysrc/whenever/__init__.pyi +970 -0
  13. whenever_none-0.9.5.1/pysrc/whenever/_core.py +63 -0
  14. whenever_none-0.9.5.1/pysrc/whenever/_pywhenever.py +6540 -0
  15. whenever_none-0.9.5.1/pysrc/whenever/_tz/__init__.py +4 -0
  16. whenever_none-0.9.5.1/pysrc/whenever/_tz/common.py +55 -0
  17. whenever_none-0.9.5.1/pysrc/whenever/_tz/posix.py +432 -0
  18. whenever_none-0.9.5.1/pysrc/whenever/_tz/system.py +75 -0
  19. whenever_none-0.9.5.1/pysrc/whenever/_tz/tzif.py +350 -0
  20. whenever_none-0.9.5.1/pysrc/whenever/_utils.py +307 -0
  21. whenever_none-0.9.5.1/pysrc/whenever/py.typed +0 -0
  22. whenever_none-0.9.5.1/pysrc/whenever_none.egg-info/PKG-INFO +65 -0
  23. whenever_none-0.9.5.1/pysrc/whenever_none.egg-info/SOURCES.txt +98 -0
  24. whenever_none-0.9.5.1/pysrc/whenever_none.egg-info/dependency_links.txt +1 -0
  25. whenever_none-0.9.5.1/pysrc/whenever_none.egg-info/requires.txt +6 -0
  26. whenever_none-0.9.5.1/pysrc/whenever_none.egg-info/top_level.txt +1 -0
  27. whenever_none-0.9.5.1/setup.cfg +4 -0
  28. whenever_none-0.9.5.1/setup.py +51 -0
  29. whenever_none-0.9.5.1/src/classes/date.rs +836 -0
  30. whenever_none-0.9.5.1/src/classes/date_delta.rs +698 -0
  31. whenever_none-0.9.5.1/src/classes/datetime_delta.rs +641 -0
  32. whenever_none-0.9.5.1/src/classes/instant.rs +795 -0
  33. whenever_none-0.9.5.1/src/classes/mod.rs +12 -0
  34. whenever_none-0.9.5.1/src/classes/monthday.rs +301 -0
  35. whenever_none-0.9.5.1/src/classes/offset_datetime.rs +1238 -0
  36. whenever_none-0.9.5.1/src/classes/plain_datetime.rs +1137 -0
  37. whenever_none-0.9.5.1/src/classes/time.rs +748 -0
  38. whenever_none-0.9.5.1/src/classes/time_delta.rs +983 -0
  39. whenever_none-0.9.5.1/src/classes/yearmonth.rs +291 -0
  40. whenever_none-0.9.5.1/src/classes/zoned_datetime.rs +1767 -0
  41. whenever_none-0.9.5.1/src/common/ambiguity.rs +73 -0
  42. whenever_none-0.9.5.1/src/common/fmt.rs +352 -0
  43. whenever_none-0.9.5.1/src/common/mod.rs +7 -0
  44. whenever_none-0.9.5.1/src/common/parse.rs +470 -0
  45. whenever_none-0.9.5.1/src/common/rfc2822.rs +210 -0
  46. whenever_none-0.9.5.1/src/common/round.rs +241 -0
  47. whenever_none-0.9.5.1/src/common/scalar.rs +929 -0
  48. whenever_none-0.9.5.1/src/docstrings.rs +1690 -0
  49. whenever_none-0.9.5.1/src/lib.rs +22 -0
  50. whenever_none-0.9.5.1/src/py/args.rs +129 -0
  51. whenever_none-0.9.5.1/src/py/base.rs +206 -0
  52. whenever_none-0.9.5.1/src/py/datetime.rs +265 -0
  53. whenever_none-0.9.5.1/src/py/dict.rs +75 -0
  54. whenever_none-0.9.5.1/src/py/exc.rs +107 -0
  55. whenever_none-0.9.5.1/src/py/methods.rs +427 -0
  56. whenever_none-0.9.5.1/src/py/misc.rs +172 -0
  57. whenever_none-0.9.5.1/src/py/mod.rs +28 -0
  58. whenever_none-0.9.5.1/src/py/module.rs +57 -0
  59. whenever_none-0.9.5.1/src/py/num.rs +170 -0
  60. whenever_none-0.9.5.1/src/py/refs.rs +127 -0
  61. whenever_none-0.9.5.1/src/py/string.rs +191 -0
  62. whenever_none-0.9.5.1/src/py/tuple.rs +123 -0
  63. whenever_none-0.9.5.1/src/py/types.rs +210 -0
  64. whenever_none-0.9.5.1/src/pymodule/def.rs +693 -0
  65. whenever_none-0.9.5.1/src/pymodule/mod.rs +8 -0
  66. whenever_none-0.9.5.1/src/pymodule/patch.rs +149 -0
  67. whenever_none-0.9.5.1/src/pymodule/tzconf.rs +51 -0
  68. whenever_none-0.9.5.1/src/pymodule/utils.rs +81 -0
  69. whenever_none-0.9.5.1/src/tz/mod.rs +5 -0
  70. whenever_none-0.9.5.1/src/tz/posix.rs +979 -0
  71. whenever_none-0.9.5.1/src/tz/store.rs +639 -0
  72. whenever_none-0.9.5.1/src/tz/sync.rs +291 -0
  73. whenever_none-0.9.5.1/src/tz/tzif.rs +725 -0
  74. whenever_none-0.9.5.1/tests/__init__.py +0 -0
  75. whenever_none-0.9.5.1/tests/benchmark/__init__.py +0 -0
  76. whenever_none-0.9.5.1/tests/common.py +141 -0
  77. whenever_none-0.9.5.1/tests/mypy.ini +13 -0
  78. whenever_none-0.9.5.1/tests/test_date.py +748 -0
  79. whenever_none-0.9.5.1/tests/test_date_delta.py +491 -0
  80. whenever_none-0.9.5.1/tests/test_datetime_delta.py +762 -0
  81. whenever_none-0.9.5.1/tests/test_instant.py +1132 -0
  82. whenever_none-0.9.5.1/tests/test_misc.py +391 -0
  83. whenever_none-0.9.5.1/tests/test_month_day.py +254 -0
  84. whenever_none-0.9.5.1/tests/test_offset_datetime.py +1837 -0
  85. whenever_none-0.9.5.1/tests/test_plain_datetime.py +958 -0
  86. whenever_none-0.9.5.1/tests/test_time.py +535 -0
  87. whenever_none-0.9.5.1/tests/test_time_delta.py +938 -0
  88. whenever_none-0.9.5.1/tests/test_tz_posix.py +571 -0
  89. whenever_none-0.9.5.1/tests/test_tz_tzif.py +268 -0
  90. whenever_none-0.9.5.1/tests/test_year_month.py +239 -0
  91. whenever_none-0.9.5.1/tests/test_zoned_datetime.py +3517 -0
  92. whenever_none-0.9.5.1/tests/tzif/Amsterdam.tzif +0 -0
  93. whenever_none-0.9.5.1/tests/tzif/Asia/Amman +0 -0
  94. whenever_none-0.9.5.1/tests/tzif/Asia/NOT_A_TZIF +1 -0
  95. whenever_none-0.9.5.1/tests/tzif/GMT-13.tzif +0 -0
  96. whenever_none-0.9.5.1/tests/tzif/Honolulu.tzif +0 -0
  97. whenever_none-0.9.5.1/tests/tzif/Iceland +0 -0
  98. whenever_none-0.9.5.1/tests/tzif/Paris_v1.tzif +0 -0
  99. whenever_none-0.9.5.1/tests/tzif/Sydney_widerange.tzif +0 -0
  100. whenever_none-0.9.5.1/tests/tzif/UTC.tzif +0 -0
@@ -0,0 +1,15 @@
1
+ [build]
2
+ rustflags = []
3
+
4
+ # see https://pyo3.rs/v0.21.2/building-and-distribution.html?highlight=macos#manual-builds
5
+ [target.x86_64-apple-darwin]
6
+ rustflags = [
7
+ "-C", "link-arg=-undefined",
8
+ "-C", "link-arg=dynamic_lookup",
9
+ ]
10
+
11
+ [target.aarch64-apple-darwin]
12
+ rustflags = [
13
+ "-C", "link-arg=-undefined",
14
+ "-C", "link-arg=dynamic_lookup",
15
+ ]
@@ -0,0 +1,697 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "alloca"
29
+ version = "0.4.0"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
32
+ dependencies = [
33
+ "cc",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "anes"
38
+ version = "0.1.6"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
41
+
42
+ [[package]]
43
+ name = "anstyle"
44
+ version = "1.0.13"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
47
+
48
+ [[package]]
49
+ name = "autocfg"
50
+ version = "1.5.0"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
53
+
54
+ [[package]]
55
+ name = "bumpalo"
56
+ version = "3.19.1"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
59
+
60
+ [[package]]
61
+ name = "cast"
62
+ version = "0.3.0"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
65
+
66
+ [[package]]
67
+ name = "cc"
68
+ version = "1.2.52"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3"
71
+ dependencies = [
72
+ "find-msvc-tools",
73
+ "shlex",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "cfg-if"
78
+ version = "1.0.4"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
81
+
82
+ [[package]]
83
+ name = "ciborium"
84
+ version = "0.2.2"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
87
+ dependencies = [
88
+ "ciborium-io",
89
+ "ciborium-ll",
90
+ "serde",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "ciborium-io"
95
+ version = "0.2.2"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
98
+
99
+ [[package]]
100
+ name = "ciborium-ll"
101
+ version = "0.2.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
104
+ dependencies = [
105
+ "ciborium-io",
106
+ "half",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "clap"
111
+ version = "4.5.54"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
114
+ dependencies = [
115
+ "clap_builder",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "clap_builder"
120
+ version = "4.5.54"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
123
+ dependencies = [
124
+ "anstyle",
125
+ "clap_lex",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "clap_lex"
130
+ version = "0.7.6"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
133
+
134
+ [[package]]
135
+ name = "criterion"
136
+ version = "0.8.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
139
+ dependencies = [
140
+ "alloca",
141
+ "anes",
142
+ "cast",
143
+ "ciborium",
144
+ "clap",
145
+ "criterion-plot",
146
+ "itertools",
147
+ "num-traits",
148
+ "oorandom",
149
+ "page_size",
150
+ "plotters",
151
+ "rayon",
152
+ "regex",
153
+ "serde",
154
+ "serde_json",
155
+ "tinytemplate",
156
+ "walkdir",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "criterion-plot"
161
+ version = "0.8.1"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
164
+ dependencies = [
165
+ "cast",
166
+ "itertools",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "crossbeam-deque"
171
+ version = "0.8.6"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
174
+ dependencies = [
175
+ "crossbeam-epoch",
176
+ "crossbeam-utils",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "crossbeam-epoch"
181
+ version = "0.9.18"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
184
+ dependencies = [
185
+ "crossbeam-utils",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "crossbeam-utils"
190
+ version = "0.8.21"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
193
+
194
+ [[package]]
195
+ name = "crunchy"
196
+ version = "0.2.4"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
199
+
200
+ [[package]]
201
+ name = "either"
202
+ version = "1.15.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
205
+
206
+ [[package]]
207
+ name = "find-msvc-tools"
208
+ version = "0.1.7"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
211
+
212
+ [[package]]
213
+ name = "getrandom"
214
+ version = "0.3.4"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
217
+ dependencies = [
218
+ "cfg-if",
219
+ "libc",
220
+ "r-efi",
221
+ "wasip2",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "half"
226
+ version = "2.7.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
229
+ dependencies = [
230
+ "cfg-if",
231
+ "crunchy",
232
+ "zerocopy",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "itertools"
237
+ version = "0.13.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
240
+ dependencies = [
241
+ "either",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "itoa"
246
+ version = "1.0.17"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
249
+
250
+ [[package]]
251
+ name = "js-sys"
252
+ version = "0.3.83"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
255
+ dependencies = [
256
+ "once_cell",
257
+ "wasm-bindgen",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "libc"
262
+ version = "0.2.180"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
265
+
266
+ [[package]]
267
+ name = "memchr"
268
+ version = "2.7.6"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
271
+
272
+ [[package]]
273
+ name = "num-traits"
274
+ version = "0.2.19"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
277
+ dependencies = [
278
+ "autocfg",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "once_cell"
283
+ version = "1.21.3"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
286
+
287
+ [[package]]
288
+ name = "oorandom"
289
+ version = "11.1.5"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
292
+
293
+ [[package]]
294
+ name = "page_size"
295
+ version = "0.6.0"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
298
+ dependencies = [
299
+ "libc",
300
+ "winapi",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "plotters"
305
+ version = "0.3.7"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
308
+ dependencies = [
309
+ "num-traits",
310
+ "plotters-backend",
311
+ "plotters-svg",
312
+ "wasm-bindgen",
313
+ "web-sys",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "plotters-backend"
318
+ version = "0.3.7"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
321
+
322
+ [[package]]
323
+ name = "plotters-svg"
324
+ version = "0.3.7"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
327
+ dependencies = [
328
+ "plotters-backend",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "proc-macro2"
333
+ version = "1.0.105"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
336
+ dependencies = [
337
+ "unicode-ident",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "pyo3-build-config"
342
+ version = "0.27.2"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
345
+ dependencies = [
346
+ "python3-dll-a",
347
+ "target-lexicon",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "pyo3-ffi"
352
+ version = "0.27.2"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
355
+ dependencies = [
356
+ "libc",
357
+ "pyo3-build-config",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "python3-dll-a"
362
+ version = "0.2.14"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
365
+ dependencies = [
366
+ "cc",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "quote"
371
+ version = "1.0.43"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
374
+ dependencies = [
375
+ "proc-macro2",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "r-efi"
380
+ version = "5.3.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
383
+
384
+ [[package]]
385
+ name = "rayon"
386
+ version = "1.11.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
389
+ dependencies = [
390
+ "either",
391
+ "rayon-core",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "rayon-core"
396
+ version = "1.13.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
399
+ dependencies = [
400
+ "crossbeam-deque",
401
+ "crossbeam-utils",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "regex"
406
+ version = "1.12.2"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
409
+ dependencies = [
410
+ "aho-corasick",
411
+ "memchr",
412
+ "regex-automata",
413
+ "regex-syntax",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "regex-automata"
418
+ version = "0.4.13"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
421
+ dependencies = [
422
+ "aho-corasick",
423
+ "memchr",
424
+ "regex-syntax",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "regex-syntax"
429
+ version = "0.8.8"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
432
+
433
+ [[package]]
434
+ name = "rustversion"
435
+ version = "1.0.22"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
438
+
439
+ [[package]]
440
+ name = "same-file"
441
+ version = "1.0.6"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
444
+ dependencies = [
445
+ "winapi-util",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "serde"
450
+ version = "1.0.228"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
453
+ dependencies = [
454
+ "serde_core",
455
+ "serde_derive",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "serde_core"
460
+ version = "1.0.228"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
463
+ dependencies = [
464
+ "serde_derive",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "serde_derive"
469
+ version = "1.0.228"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
472
+ dependencies = [
473
+ "proc-macro2",
474
+ "quote",
475
+ "syn",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "serde_json"
480
+ version = "1.0.149"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
483
+ dependencies = [
484
+ "itoa",
485
+ "memchr",
486
+ "serde",
487
+ "serde_core",
488
+ "zmij",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "shlex"
493
+ version = "1.3.0"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
496
+
497
+ [[package]]
498
+ name = "syn"
499
+ version = "2.0.114"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
502
+ dependencies = [
503
+ "proc-macro2",
504
+ "quote",
505
+ "unicode-ident",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "target-lexicon"
510
+ version = "0.13.4"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
513
+
514
+ [[package]]
515
+ name = "tinytemplate"
516
+ version = "1.2.1"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
519
+ dependencies = [
520
+ "serde",
521
+ "serde_json",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "unicode-ident"
526
+ version = "1.0.22"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
529
+
530
+ [[package]]
531
+ name = "version_check"
532
+ version = "0.9.5"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
535
+
536
+ [[package]]
537
+ name = "walkdir"
538
+ version = "2.5.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
541
+ dependencies = [
542
+ "same-file",
543
+ "winapi-util",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "wasip2"
548
+ version = "1.0.1+wasi-0.2.4"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
551
+ dependencies = [
552
+ "wit-bindgen",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "wasm-bindgen"
557
+ version = "0.2.106"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
560
+ dependencies = [
561
+ "cfg-if",
562
+ "once_cell",
563
+ "rustversion",
564
+ "wasm-bindgen-macro",
565
+ "wasm-bindgen-shared",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "wasm-bindgen-macro"
570
+ version = "0.2.106"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
573
+ dependencies = [
574
+ "quote",
575
+ "wasm-bindgen-macro-support",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "wasm-bindgen-macro-support"
580
+ version = "0.2.106"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
583
+ dependencies = [
584
+ "bumpalo",
585
+ "proc-macro2",
586
+ "quote",
587
+ "syn",
588
+ "wasm-bindgen-shared",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "wasm-bindgen-shared"
593
+ version = "0.2.106"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
596
+ dependencies = [
597
+ "unicode-ident",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "web-sys"
602
+ version = "0.3.83"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
605
+ dependencies = [
606
+ "js-sys",
607
+ "wasm-bindgen",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "whenever"
612
+ version = "0.1.0"
613
+ dependencies = [
614
+ "ahash",
615
+ "criterion",
616
+ "pyo3-build-config",
617
+ "pyo3-ffi",
618
+ "walkdir",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "winapi"
623
+ version = "0.3.9"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
626
+ dependencies = [
627
+ "winapi-i686-pc-windows-gnu",
628
+ "winapi-x86_64-pc-windows-gnu",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "winapi-i686-pc-windows-gnu"
633
+ version = "0.4.0"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
636
+
637
+ [[package]]
638
+ name = "winapi-util"
639
+ version = "0.1.11"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
642
+ dependencies = [
643
+ "windows-sys",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "winapi-x86_64-pc-windows-gnu"
648
+ version = "0.4.0"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
651
+
652
+ [[package]]
653
+ name = "windows-link"
654
+ version = "0.2.1"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
657
+
658
+ [[package]]
659
+ name = "windows-sys"
660
+ version = "0.61.2"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
663
+ dependencies = [
664
+ "windows-link",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "wit-bindgen"
669
+ version = "0.46.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
672
+
673
+ [[package]]
674
+ name = "zerocopy"
675
+ version = "0.8.33"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
678
+ dependencies = [
679
+ "zerocopy-derive",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "zerocopy-derive"
684
+ version = "0.8.33"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
687
+ dependencies = [
688
+ "proc-macro2",
689
+ "quote",
690
+ "syn",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "zmij"
695
+ version = "1.0.12"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8"