moka-py 0.1.19__tar.gz → 0.2.4__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.

Potentially problematic release.


This version of moka-py might be problematic. Click here for more details.

@@ -38,18 +38,36 @@ jobs:
38
38
  strategy:
39
39
  matrix:
40
40
  platform:
41
- - runner: ubuntu-22.04
42
- target: x86_64
43
- - runner: ubuntu-22.04
44
- target: x86
45
- - runner: ubuntu-22.04
46
- target: aarch64
47
- - runner: ubuntu-22.04
48
- target: armv7
49
- - runner: ubuntu-22.04
50
- target: s390x
51
- - runner: ubuntu-22.04
52
- target: ppc64le
41
+ - {
42
+ runner: ubuntu-22.04,
43
+ target: x86_64,
44
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
45
+ }
46
+ - {
47
+ runner: ubuntu-22.04,
48
+ target: x86,
49
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
50
+ }
51
+ - {
52
+ runner: ubuntu-22.04,
53
+ target: aarch64,
54
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
55
+ }
56
+ - {
57
+ runner: ubuntu-22.04,
58
+ target: armv7,
59
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
60
+ }
61
+ - {
62
+ runner: ubuntu-22.04,
63
+ target: s390x,
64
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
65
+ }
66
+ - {
67
+ runner: ubuntu-22.04,
68
+ target: ppc64le,
69
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
70
+ }
53
71
  steps:
54
72
  - uses: actions/checkout@v4
55
73
  - uses: actions/setup-python@v5
@@ -59,7 +77,7 @@ jobs:
59
77
  uses: PyO3/maturin-action@v1
60
78
  with:
61
79
  target: ${{ matrix.platform.target }}
62
- args: --release --out dist --find-interpreter
80
+ args: --release --out dist --interpreter ${{ matrix.platform.interpreter }}
63
81
  sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
64
82
  manylinux: auto
65
83
  - name: Upload wheels
@@ -74,14 +92,26 @@ jobs:
74
92
  strategy:
75
93
  matrix:
76
94
  platform:
77
- - runner: ubuntu-22.04
78
- target: x86_64
79
- - runner: ubuntu-22.04
80
- target: x86
81
- - runner: ubuntu-22.04
82
- target: aarch64
83
- - runner: ubuntu-22.04
84
- target: armv7
95
+ - {
96
+ runner: ubuntu-22.04,
97
+ target: x86_64,
98
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
99
+ }
100
+ - {
101
+ runner: ubuntu-22.04,
102
+ target: x86,
103
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
104
+ }
105
+ - {
106
+ runner: ubuntu-22.04,
107
+ target: aarch64,
108
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
109
+ }
110
+ - {
111
+ runner: ubuntu-22.04,
112
+ target: armv7,
113
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
114
+ }
85
115
  steps:
86
116
  - uses: actions/checkout@v4
87
117
  - uses: actions/setup-python@v5
@@ -91,7 +121,7 @@ jobs:
91
121
  uses: PyO3/maturin-action@v1
92
122
  with:
93
123
  target: ${{ matrix.platform.target }}
94
- args: --release --out dist --find-interpreter
124
+ args: --release --out dist --interpreter ${{ matrix.platform.interpreter }}
95
125
  sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
96
126
  manylinux: musllinux_1_2
97
127
  - name: Upload wheels
@@ -106,10 +136,16 @@ jobs:
106
136
  strategy:
107
137
  matrix:
108
138
  platform:
109
- - runner: windows-latest
110
- target: x64
111
- - runner: windows-latest
112
- target: x86
139
+ - {
140
+ runner: windows-latest,
141
+ target: x64,
142
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
143
+ }
144
+ - {
145
+ runner: windows-latest,
146
+ target: x86,
147
+ interpreter: "3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t"
148
+ }
113
149
  steps:
114
150
  - uses: actions/checkout@v4
115
151
  - uses: actions/setup-python@v5
@@ -120,7 +156,7 @@ jobs:
120
156
  uses: PyO3/maturin-action@v1
121
157
  with:
122
158
  target: ${{ matrix.platform.target }}
123
- args: --release --out dist --find-interpreter
159
+ args: --release --out dist --interpreter ${{ matrix.platform.interpreter }}
124
160
  sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
125
161
  - name: Upload wheels
126
162
  uses: actions/upload-artifact@v4
@@ -134,10 +170,16 @@ jobs:
134
170
  strategy:
135
171
  matrix:
136
172
  platform:
137
- - runner: macos-15
138
- target: x86_64
139
- - runner: macos-15
140
- target: aarch64
173
+ - {
174
+ runner: macos-15,
175
+ target: x86_64,
176
+ interpreter: "3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
177
+ }
178
+ - {
179
+ runner: macos-15,
180
+ target: aarch64,
181
+ interpreter: "3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11"
182
+ }
141
183
  steps:
142
184
  - uses: actions/checkout@v4
143
185
  - uses: actions/setup-python@v5
@@ -147,7 +189,7 @@ jobs:
147
189
  uses: PyO3/maturin-action@v1
148
190
  with:
149
191
  target: ${{ matrix.platform.target }}
150
- args: --release --out dist --find-interpreter
192
+ args: --release --out dist --interpreter ${{ matrix.platform.interpreter }}
151
193
  sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
152
194
  - name: Upload wheels
153
195
  uses: actions/upload-artifact@v4
@@ -0,0 +1,9 @@
1
+ repos:
2
+ - repo: local
3
+ hooks:
4
+ - id: lint-fmt
5
+ name: lint-fmt
6
+ entry: just
7
+ language: system
8
+ pass_filenames: false
9
+ always_run: true
@@ -0,0 +1,510 @@
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 = "autocfg"
20
+ version = "1.5.0"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
23
+
24
+ [[package]]
25
+ name = "bitflags"
26
+ version = "2.10.0"
27
+ source = "registry+https://github.com/rust-lang/crates.io-index"
28
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
29
+
30
+ [[package]]
31
+ name = "bumpalo"
32
+ version = "3.19.0"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
35
+
36
+ [[package]]
37
+ name = "cc"
38
+ version = "1.2.43"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
41
+ dependencies = [
42
+ "find-msvc-tools",
43
+ "shlex",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "cfg-if"
48
+ version = "1.0.4"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
51
+
52
+ [[package]]
53
+ name = "crossbeam-channel"
54
+ version = "0.5.15"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
57
+ dependencies = [
58
+ "crossbeam-utils",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "crossbeam-epoch"
63
+ version = "0.9.18"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
66
+ dependencies = [
67
+ "crossbeam-utils",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "crossbeam-utils"
72
+ version = "0.8.21"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
75
+
76
+ [[package]]
77
+ name = "equivalent"
78
+ version = "1.0.2"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
81
+
82
+ [[package]]
83
+ name = "find-msvc-tools"
84
+ version = "0.1.4"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
87
+
88
+ [[package]]
89
+ name = "getrandom"
90
+ version = "0.3.4"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
93
+ dependencies = [
94
+ "cfg-if",
95
+ "libc",
96
+ "r-efi",
97
+ "wasip2",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "heck"
102
+ version = "0.5.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
105
+
106
+ [[package]]
107
+ name = "indoc"
108
+ version = "2.0.7"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
111
+ dependencies = [
112
+ "rustversion",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "js-sys"
117
+ version = "0.3.81"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
120
+ dependencies = [
121
+ "once_cell",
122
+ "wasm-bindgen",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "libc"
127
+ version = "0.2.177"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
130
+
131
+ [[package]]
132
+ name = "lock_api"
133
+ version = "0.4.14"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
136
+ dependencies = [
137
+ "scopeguard",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "log"
142
+ version = "0.4.28"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
145
+
146
+ [[package]]
147
+ name = "memoffset"
148
+ version = "0.9.1"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
151
+ dependencies = [
152
+ "autocfg",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "moka"
157
+ version = "0.12.11"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "8261cd88c312e0004c1d51baad2980c66528dfdb2bee62003e643a4d8f86b077"
160
+ dependencies = [
161
+ "crossbeam-channel",
162
+ "crossbeam-epoch",
163
+ "crossbeam-utils",
164
+ "equivalent",
165
+ "parking_lot",
166
+ "portable-atomic",
167
+ "rustc_version",
168
+ "smallvec",
169
+ "tagptr",
170
+ "uuid",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "moka-py"
175
+ version = "0.2.4"
176
+ dependencies = [
177
+ "ahash",
178
+ "moka",
179
+ "pyo3",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "once_cell"
184
+ version = "1.21.3"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
187
+
188
+ [[package]]
189
+ name = "parking_lot"
190
+ version = "0.12.5"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
193
+ dependencies = [
194
+ "lock_api",
195
+ "parking_lot_core",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "parking_lot_core"
200
+ version = "0.9.12"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
203
+ dependencies = [
204
+ "cfg-if",
205
+ "libc",
206
+ "redox_syscall",
207
+ "smallvec",
208
+ "windows-link",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "portable-atomic"
213
+ version = "1.11.1"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
216
+
217
+ [[package]]
218
+ name = "proc-macro2"
219
+ version = "1.0.103"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
222
+ dependencies = [
223
+ "unicode-ident",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "pyo3"
228
+ version = "0.26.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
231
+ dependencies = [
232
+ "indoc",
233
+ "libc",
234
+ "memoffset",
235
+ "once_cell",
236
+ "portable-atomic",
237
+ "pyo3-build-config",
238
+ "pyo3-ffi",
239
+ "pyo3-macros",
240
+ "unindent",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "pyo3-build-config"
245
+ version = "0.26.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
248
+ dependencies = [
249
+ "python3-dll-a",
250
+ "target-lexicon",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "pyo3-ffi"
255
+ version = "0.26.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
258
+ dependencies = [
259
+ "libc",
260
+ "pyo3-build-config",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "pyo3-macros"
265
+ version = "0.26.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
268
+ dependencies = [
269
+ "proc-macro2",
270
+ "pyo3-macros-backend",
271
+ "quote",
272
+ "syn",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "pyo3-macros-backend"
277
+ version = "0.26.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
280
+ dependencies = [
281
+ "heck",
282
+ "proc-macro2",
283
+ "pyo3-build-config",
284
+ "quote",
285
+ "syn",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "python3-dll-a"
290
+ version = "0.2.14"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
293
+ dependencies = [
294
+ "cc",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "quote"
299
+ version = "1.0.41"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
302
+ dependencies = [
303
+ "proc-macro2",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "r-efi"
308
+ version = "5.3.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
311
+
312
+ [[package]]
313
+ name = "redox_syscall"
314
+ version = "0.5.18"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
317
+ dependencies = [
318
+ "bitflags",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "rustc_version"
323
+ version = "0.4.1"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
326
+ dependencies = [
327
+ "semver",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "rustversion"
332
+ version = "1.0.22"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
335
+
336
+ [[package]]
337
+ name = "scopeguard"
338
+ version = "1.2.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
341
+
342
+ [[package]]
343
+ name = "semver"
344
+ version = "1.0.27"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
347
+
348
+ [[package]]
349
+ name = "shlex"
350
+ version = "1.3.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
353
+
354
+ [[package]]
355
+ name = "smallvec"
356
+ version = "1.15.1"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
359
+
360
+ [[package]]
361
+ name = "syn"
362
+ version = "2.0.108"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
365
+ dependencies = [
366
+ "proc-macro2",
367
+ "quote",
368
+ "unicode-ident",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "tagptr"
373
+ version = "0.2.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
376
+
377
+ [[package]]
378
+ name = "target-lexicon"
379
+ version = "0.13.3"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
382
+
383
+ [[package]]
384
+ name = "unicode-ident"
385
+ version = "1.0.20"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
388
+
389
+ [[package]]
390
+ name = "unindent"
391
+ version = "0.2.4"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
394
+
395
+ [[package]]
396
+ name = "uuid"
397
+ version = "1.18.1"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
400
+ dependencies = [
401
+ "getrandom",
402
+ "js-sys",
403
+ "wasm-bindgen",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "version_check"
408
+ version = "0.9.5"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
411
+
412
+ [[package]]
413
+ name = "wasip2"
414
+ version = "1.0.1+wasi-0.2.4"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
417
+ dependencies = [
418
+ "wit-bindgen",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "wasm-bindgen"
423
+ version = "0.2.104"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
426
+ dependencies = [
427
+ "cfg-if",
428
+ "once_cell",
429
+ "rustversion",
430
+ "wasm-bindgen-macro",
431
+ "wasm-bindgen-shared",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "wasm-bindgen-backend"
436
+ version = "0.2.104"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
439
+ dependencies = [
440
+ "bumpalo",
441
+ "log",
442
+ "proc-macro2",
443
+ "quote",
444
+ "syn",
445
+ "wasm-bindgen-shared",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "wasm-bindgen-macro"
450
+ version = "0.2.104"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
453
+ dependencies = [
454
+ "quote",
455
+ "wasm-bindgen-macro-support",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "wasm-bindgen-macro-support"
460
+ version = "0.2.104"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
463
+ dependencies = [
464
+ "proc-macro2",
465
+ "quote",
466
+ "syn",
467
+ "wasm-bindgen-backend",
468
+ "wasm-bindgen-shared",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "wasm-bindgen-shared"
473
+ version = "0.2.104"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
476
+ dependencies = [
477
+ "unicode-ident",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "windows-link"
482
+ version = "0.2.1"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
485
+
486
+ [[package]]
487
+ name = "wit-bindgen"
488
+ version = "0.46.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
491
+
492
+ [[package]]
493
+ name = "zerocopy"
494
+ version = "0.8.27"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
497
+ dependencies = [
498
+ "zerocopy-derive",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "zerocopy-derive"
503
+ version = "0.8.27"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
506
+ dependencies = [
507
+ "proc-macro2",
508
+ "quote",
509
+ "syn",
510
+ ]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "moka-py"
3
- version = "0.1.19"
3
+ version = "0.2.4"
4
4
  edition = "2021"
5
5
  readme = "README.md"
6
6
 
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
12
12
  [dependencies]
13
13
  ahash = "0.8.12"
14
14
  moka = { version = "0.12", features = ["sync"] }
15
- pyo3 = "0.26.0"
15
+ pyo3 = { version = "0.26", features = ["generate-import-lib"] }
16
16
 
17
17
  [profile.release]
18
18
  lto = true