pywinpty 2.0.13__tar.gz → 2.0.14__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 (25) hide show
  1. {pywinpty-2.0.13 → pywinpty-2.0.14}/.github/workflows/windows_build.yml +1 -1
  2. {pywinpty-2.0.13 → pywinpty-2.0.14}/.github/workflows/windows_release.yml +1 -1
  3. {pywinpty-2.0.13 → pywinpty-2.0.14}/.gitignore +4 -0
  4. {pywinpty-2.0.13 → pywinpty-2.0.14}/CHANGELOG.md +11 -0
  5. pywinpty-2.0.14/Cargo.lock +410 -0
  6. {pywinpty-2.0.13 → pywinpty-2.0.14}/Cargo.toml +3 -3
  7. {pywinpty-2.0.13 → pywinpty-2.0.14}/PKG-INFO +2 -2
  8. {pywinpty-2.0.13 → pywinpty-2.0.14}/src/lib.rs +2 -2
  9. pywinpty-2.0.13/Cargo.lock +0 -472
  10. {pywinpty-2.0.13 → pywinpty-2.0.14}/.github/dependabot.yml +0 -0
  11. {pywinpty-2.0.13 → pywinpty-2.0.14}/.github/scripts/copy_winpty.sh +0 -0
  12. {pywinpty-2.0.13 → pywinpty-2.0.14}/.github/workflows/linux_sdist.yml +0 -0
  13. {pywinpty-2.0.13 → pywinpty-2.0.14}/LICENSE.txt +0 -0
  14. {pywinpty-2.0.13 → pywinpty-2.0.14}/MANIFEST.in +0 -0
  15. {pywinpty-2.0.13 → pywinpty-2.0.14}/README.md +0 -0
  16. {pywinpty-2.0.13 → pywinpty-2.0.14}/RELEASE.md +0 -0
  17. {pywinpty-2.0.13 → pywinpty-2.0.14}/pyproject.toml +0 -0
  18. {pywinpty-2.0.13 → pywinpty-2.0.14}/runtests.py +0 -0
  19. {pywinpty-2.0.13 → pywinpty-2.0.14}/winpty/__init__.py +0 -0
  20. {pywinpty-2.0.13 → pywinpty-2.0.14}/winpty/enums.py +0 -0
  21. {pywinpty-2.0.13 → pywinpty-2.0.14}/winpty/ptyprocess.py +0 -0
  22. {pywinpty-2.0.13 → pywinpty-2.0.14}/winpty/tests/__init__.py +0 -0
  23. {pywinpty-2.0.13 → pywinpty-2.0.14}/winpty/tests/test_pty.py +0 -0
  24. {pywinpty-2.0.13 → pywinpty-2.0.14}/winpty/tests/test_ptyprocess.py +0 -0
  25. {pywinpty-2.0.13 → pywinpty-2.0.14}/winpty/winpty.pyi +0 -0
@@ -20,7 +20,7 @@ jobs:
20
20
  strategy:
21
21
  fail-fast: false
22
22
  matrix:
23
- PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11", "3.12"]
23
+ PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
24
24
  steps:
25
25
  - name: Checkout branch
26
26
  uses: actions/checkout@v4
@@ -15,7 +15,7 @@ jobs:
15
15
  strategy:
16
16
  fail-fast: false
17
17
  matrix:
18
- PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11", "3.12"]
18
+ PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19
19
  steps:
20
20
  - name: Checkout branch
21
21
  uses: actions/checkout@v4
@@ -45,6 +45,7 @@ nosetests.xml
45
45
  coverage.xml
46
46
  *.cover
47
47
  .hypothesis/
48
+ .pytest_cache/
48
49
 
49
50
  # Translations
50
51
  *.mo
@@ -118,3 +119,6 @@ cywinpty.c
118
119
  .vs/
119
120
  .vscode/
120
121
  CppProperties.json
122
+
123
+ # Debug VS files
124
+ *.sln
@@ -1,3 +1,14 @@
1
+ ## Version 2.0.14 (2024/10/17)
2
+
3
+
4
+ ### Pull Requests Merged
5
+
6
+ * [PR 453](https://github.com/andfoy/pywinpty/pull/453) - Update PyO3 to 0.22.3 and winpty-rs to 0.4.0, by [@andfoy](https://github.com/andfoy)
7
+ * [PR 452](https://github.com/andfoy/pywinpty/pull/452) - Add support for Python 3.13, by [@andfoy](https://github.com/andfoy) ([451](https://github.com/andfoy/pywinpty/issues/451))
8
+
9
+ In this release 2 pull requests were closed.
10
+
11
+
1
12
  ## Version 2.0.13 (2024/02/26)
2
13
 
3
14
 
@@ -0,0 +1,410 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "autocfg"
7
+ version = "1.4.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
10
+
11
+ [[package]]
12
+ name = "bitflags"
13
+ version = "2.6.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
16
+
17
+ [[package]]
18
+ name = "cfg-if"
19
+ version = "1.0.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
22
+
23
+ [[package]]
24
+ name = "either"
25
+ version = "1.13.0"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
28
+
29
+ [[package]]
30
+ name = "enum-primitive-derive"
31
+ version = "0.3.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "ba7795da175654fe16979af73f81f26a8ea27638d8d9823d317016888a63dc4c"
34
+ dependencies = [
35
+ "num-traits",
36
+ "quote",
37
+ "syn",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "errno"
42
+ version = "0.3.9"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
45
+ dependencies = [
46
+ "libc",
47
+ "windows-sys",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "heck"
52
+ version = "0.5.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
55
+
56
+ [[package]]
57
+ name = "home"
58
+ version = "0.5.9"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
61
+ dependencies = [
62
+ "windows-sys",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "indoc"
67
+ version = "2.0.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
70
+
71
+ [[package]]
72
+ name = "libc"
73
+ version = "0.2.160"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "f0b21006cd1874ae9e650973c565615676dc4a274c965bb0a73796dac838ce4f"
76
+
77
+ [[package]]
78
+ name = "linux-raw-sys"
79
+ version = "0.4.14"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
82
+
83
+ [[package]]
84
+ name = "memoffset"
85
+ version = "0.9.1"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
88
+ dependencies = [
89
+ "autocfg",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "num-traits"
94
+ version = "0.2.19"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
97
+ dependencies = [
98
+ "autocfg",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "once_cell"
103
+ version = "1.20.2"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
106
+
107
+ [[package]]
108
+ name = "portable-atomic"
109
+ version = "1.9.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
112
+
113
+ [[package]]
114
+ name = "proc-macro2"
115
+ version = "1.0.88"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9"
118
+ dependencies = [
119
+ "unicode-ident",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "pyo3"
124
+ version = "0.22.5"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
127
+ dependencies = [
128
+ "cfg-if",
129
+ "indoc",
130
+ "libc",
131
+ "memoffset",
132
+ "once_cell",
133
+ "portable-atomic",
134
+ "pyo3-build-config",
135
+ "pyo3-ffi",
136
+ "pyo3-macros",
137
+ "unindent",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "pyo3-build-config"
142
+ version = "0.22.5"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179"
145
+ dependencies = [
146
+ "once_cell",
147
+ "target-lexicon",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "pyo3-ffi"
152
+ version = "0.22.5"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d"
155
+ dependencies = [
156
+ "libc",
157
+ "pyo3-build-config",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "pyo3-macros"
162
+ version = "0.22.5"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "e655aad15e09b94ffdb3ce3d217acf652e26bbc37697ef012f5e5e348c716e5e"
165
+ dependencies = [
166
+ "proc-macro2",
167
+ "pyo3-macros-backend",
168
+ "quote",
169
+ "syn",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "pyo3-macros-backend"
174
+ version = "0.22.5"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "ae1e3f09eecd94618f60a455a23def79f79eba4dc561a97324bf9ac8c6df30ce"
177
+ dependencies = [
178
+ "heck",
179
+ "proc-macro2",
180
+ "pyo3-build-config",
181
+ "quote",
182
+ "syn",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "pywinpty"
187
+ version = "2.0.14"
188
+ dependencies = [
189
+ "pyo3",
190
+ "winpty-rs",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "quote"
195
+ version = "1.0.37"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
198
+ dependencies = [
199
+ "proc-macro2",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "rustix"
204
+ version = "0.38.37"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
207
+ dependencies = [
208
+ "bitflags",
209
+ "errno",
210
+ "libc",
211
+ "linux-raw-sys",
212
+ "windows-sys",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "syn"
217
+ version = "2.0.79"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
220
+ dependencies = [
221
+ "proc-macro2",
222
+ "quote",
223
+ "unicode-ident",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "target-lexicon"
228
+ version = "0.12.16"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
231
+
232
+ [[package]]
233
+ name = "unicode-ident"
234
+ version = "1.0.13"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
237
+
238
+ [[package]]
239
+ name = "unindent"
240
+ version = "0.2.3"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
243
+
244
+ [[package]]
245
+ name = "which"
246
+ version = "6.0.3"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
249
+ dependencies = [
250
+ "either",
251
+ "home",
252
+ "rustix",
253
+ "winsafe",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "windows"
258
+ version = "0.58.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
261
+ dependencies = [
262
+ "windows-core",
263
+ "windows-targets",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "windows-core"
268
+ version = "0.58.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
271
+ dependencies = [
272
+ "windows-implement",
273
+ "windows-interface",
274
+ "windows-result",
275
+ "windows-strings",
276
+ "windows-targets",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "windows-implement"
281
+ version = "0.58.0"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
284
+ dependencies = [
285
+ "proc-macro2",
286
+ "quote",
287
+ "syn",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "windows-interface"
292
+ version = "0.58.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
295
+ dependencies = [
296
+ "proc-macro2",
297
+ "quote",
298
+ "syn",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "windows-result"
303
+ version = "0.2.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
306
+ dependencies = [
307
+ "windows-targets",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "windows-strings"
312
+ version = "0.1.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
315
+ dependencies = [
316
+ "windows-result",
317
+ "windows-targets",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "windows-sys"
322
+ version = "0.52.0"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
325
+ dependencies = [
326
+ "windows-targets",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "windows-targets"
331
+ version = "0.52.6"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
334
+ dependencies = [
335
+ "windows_aarch64_gnullvm",
336
+ "windows_aarch64_msvc",
337
+ "windows_i686_gnu",
338
+ "windows_i686_gnullvm",
339
+ "windows_i686_msvc",
340
+ "windows_x86_64_gnu",
341
+ "windows_x86_64_gnullvm",
342
+ "windows_x86_64_msvc",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "windows_aarch64_gnullvm"
347
+ version = "0.52.6"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
350
+
351
+ [[package]]
352
+ name = "windows_aarch64_msvc"
353
+ version = "0.52.6"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
356
+
357
+ [[package]]
358
+ name = "windows_i686_gnu"
359
+ version = "0.52.6"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
362
+
363
+ [[package]]
364
+ name = "windows_i686_gnullvm"
365
+ version = "0.52.6"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
368
+
369
+ [[package]]
370
+ name = "windows_i686_msvc"
371
+ version = "0.52.6"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
374
+
375
+ [[package]]
376
+ name = "windows_x86_64_gnu"
377
+ version = "0.52.6"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
380
+
381
+ [[package]]
382
+ name = "windows_x86_64_gnullvm"
383
+ version = "0.52.6"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
386
+
387
+ [[package]]
388
+ name = "windows_x86_64_msvc"
389
+ version = "0.52.6"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
392
+
393
+ [[package]]
394
+ name = "winpty-rs"
395
+ version = "0.4.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "13fce64972ee42703b2be1573fa22ddd0f92cdffe029e5f483e22d498252a748"
398
+ dependencies = [
399
+ "bitflags",
400
+ "enum-primitive-derive",
401
+ "num-traits",
402
+ "which",
403
+ "windows",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "winsafe"
408
+ version = "0.0.19"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "pywinpty"
3
- version = "2.0.13"
3
+ version = "2.0.14"
4
4
  authors = ["Edgar Andrés Margffoy Tuay <andfoy@gmail.com>"]
5
5
  description = "Pseudo terminal support for Windows from Python."
6
6
  repository = "https://github.com/spyder-ide/pywinpty"
@@ -14,10 +14,10 @@ name = "winpty"
14
14
  crate-type = ["cdylib"]
15
15
 
16
16
  [dependencies]
17
- winpty-rs = "0.3.15"
17
+ winpty-rs = "0.4"
18
18
 
19
19
  [dependencies.pyo3]
20
- version = "0.20.2"
20
+ version = "0.22.3"
21
21
  features = ["extension-module"]
22
22
 
23
23
  [package.metadata.docs.rs]
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: pywinpty
3
- Version: 2.0.13
3
+ Version: 2.0.14
4
4
  License-File: LICENSE.txt
5
5
  Summary: Pseudo terminal support for Windows from Python.
6
6
  Keywords: pty,pseudo-terminal,conpty,windows,winpty
@@ -366,9 +366,9 @@ impl PyPTY {
366
366
  }
367
367
 
368
368
  #[pymodule]
369
- fn winpty(py: Python, m: &PyModule) -> PyResult<()> {
369
+ fn winpty(py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {
370
370
  m.add("__version__", VERSION)?;
371
- m.add("WinptyError", py.get_type::<WinptyError>())?;
371
+ m.add("WinptyError", py.get_type_bound::<WinptyError>())?;
372
372
  m.add_class::<PyPTY>()?;
373
373
  Ok(())
374
374
  }
@@ -1,472 +0,0 @@
1
- # This file is automatically @generated by Cargo.
2
- # It is not intended for manual editing.
3
- version = 3
4
-
5
- [[package]]
6
- name = "autocfg"
7
- version = "1.1.0"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
10
-
11
- [[package]]
12
- name = "bitflags"
13
- version = "1.3.2"
14
- source = "registry+https://github.com/rust-lang/crates.io-index"
15
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
16
-
17
- [[package]]
18
- name = "bitflags"
19
- version = "2.4.0"
20
- source = "registry+https://github.com/rust-lang/crates.io-index"
21
- checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
22
-
23
- [[package]]
24
- name = "cfg-if"
25
- version = "1.0.0"
26
- source = "registry+https://github.com/rust-lang/crates.io-index"
27
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
28
-
29
- [[package]]
30
- name = "either"
31
- version = "1.9.0"
32
- source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
34
-
35
- [[package]]
36
- name = "enum-primitive-derive"
37
- version = "0.3.0"
38
- source = "registry+https://github.com/rust-lang/crates.io-index"
39
- checksum = "ba7795da175654fe16979af73f81f26a8ea27638d8d9823d317016888a63dc4c"
40
- dependencies = [
41
- "num-traits",
42
- "quote",
43
- "syn",
44
- ]
45
-
46
- [[package]]
47
- name = "errno"
48
- version = "0.3.8"
49
- source = "registry+https://github.com/rust-lang/crates.io-index"
50
- checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
51
- dependencies = [
52
- "libc",
53
- "windows-sys",
54
- ]
55
-
56
- [[package]]
57
- name = "heck"
58
- version = "0.4.1"
59
- source = "registry+https://github.com/rust-lang/crates.io-index"
60
- checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
61
-
62
- [[package]]
63
- name = "home"
64
- version = "0.5.9"
65
- source = "registry+https://github.com/rust-lang/crates.io-index"
66
- checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
67
- dependencies = [
68
- "windows-sys",
69
- ]
70
-
71
- [[package]]
72
- name = "indoc"
73
- version = "2.0.4"
74
- source = "registry+https://github.com/rust-lang/crates.io-index"
75
- checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
76
-
77
- [[package]]
78
- name = "libc"
79
- version = "0.2.153"
80
- source = "registry+https://github.com/rust-lang/crates.io-index"
81
- checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
82
-
83
- [[package]]
84
- name = "linux-raw-sys"
85
- version = "0.4.13"
86
- source = "registry+https://github.com/rust-lang/crates.io-index"
87
- checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
88
-
89
- [[package]]
90
- name = "lock_api"
91
- version = "0.4.11"
92
- source = "registry+https://github.com/rust-lang/crates.io-index"
93
- checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
94
- dependencies = [
95
- "autocfg",
96
- "scopeguard",
97
- ]
98
-
99
- [[package]]
100
- name = "memoffset"
101
- version = "0.9.0"
102
- source = "registry+https://github.com/rust-lang/crates.io-index"
103
- checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
104
- dependencies = [
105
- "autocfg",
106
- ]
107
-
108
- [[package]]
109
- name = "num-traits"
110
- version = "0.2.17"
111
- source = "registry+https://github.com/rust-lang/crates.io-index"
112
- checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
113
- dependencies = [
114
- "autocfg",
115
- ]
116
-
117
- [[package]]
118
- name = "once_cell"
119
- version = "1.19.0"
120
- source = "registry+https://github.com/rust-lang/crates.io-index"
121
- checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
122
-
123
- [[package]]
124
- name = "parking_lot"
125
- version = "0.12.1"
126
- source = "registry+https://github.com/rust-lang/crates.io-index"
127
- checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
128
- dependencies = [
129
- "lock_api",
130
- "parking_lot_core",
131
- ]
132
-
133
- [[package]]
134
- name = "parking_lot_core"
135
- version = "0.9.9"
136
- source = "registry+https://github.com/rust-lang/crates.io-index"
137
- checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
138
- dependencies = [
139
- "cfg-if",
140
- "libc",
141
- "redox_syscall",
142
- "smallvec",
143
- "windows-targets 0.48.5",
144
- ]
145
-
146
- [[package]]
147
- name = "proc-macro2"
148
- version = "1.0.78"
149
- source = "registry+https://github.com/rust-lang/crates.io-index"
150
- checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
151
- dependencies = [
152
- "unicode-ident",
153
- ]
154
-
155
- [[package]]
156
- name = "pyo3"
157
- version = "0.20.2"
158
- source = "registry+https://github.com/rust-lang/crates.io-index"
159
- checksum = "9a89dc7a5850d0e983be1ec2a463a171d20990487c3cfcd68b5363f1ee3d6fe0"
160
- dependencies = [
161
- "cfg-if",
162
- "indoc",
163
- "libc",
164
- "memoffset",
165
- "parking_lot",
166
- "pyo3-build-config",
167
- "pyo3-ffi",
168
- "pyo3-macros",
169
- "unindent",
170
- ]
171
-
172
- [[package]]
173
- name = "pyo3-build-config"
174
- version = "0.20.2"
175
- source = "registry+https://github.com/rust-lang/crates.io-index"
176
- checksum = "07426f0d8fe5a601f26293f300afd1a7b1ed5e78b2a705870c5f30893c5163be"
177
- dependencies = [
178
- "once_cell",
179
- "target-lexicon",
180
- ]
181
-
182
- [[package]]
183
- name = "pyo3-ffi"
184
- version = "0.20.2"
185
- source = "registry+https://github.com/rust-lang/crates.io-index"
186
- checksum = "dbb7dec17e17766b46bca4f1a4215a85006b4c2ecde122076c562dd058da6cf1"
187
- dependencies = [
188
- "libc",
189
- "pyo3-build-config",
190
- ]
191
-
192
- [[package]]
193
- name = "pyo3-macros"
194
- version = "0.20.2"
195
- source = "registry+https://github.com/rust-lang/crates.io-index"
196
- checksum = "05f738b4e40d50b5711957f142878cfa0f28e054aa0ebdfc3fd137a843f74ed3"
197
- dependencies = [
198
- "proc-macro2",
199
- "pyo3-macros-backend",
200
- "quote",
201
- "syn",
202
- ]
203
-
204
- [[package]]
205
- name = "pyo3-macros-backend"
206
- version = "0.20.2"
207
- source = "registry+https://github.com/rust-lang/crates.io-index"
208
- checksum = "0fc910d4851847827daf9d6cdd4a823fbdaab5b8818325c5e97a86da79e8881f"
209
- dependencies = [
210
- "heck",
211
- "proc-macro2",
212
- "quote",
213
- "syn",
214
- ]
215
-
216
- [[package]]
217
- name = "pywinpty"
218
- version = "2.0.13"
219
- dependencies = [
220
- "pyo3",
221
- "winpty-rs",
222
- ]
223
-
224
- [[package]]
225
- name = "quote"
226
- version = "1.0.35"
227
- source = "registry+https://github.com/rust-lang/crates.io-index"
228
- checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
229
- dependencies = [
230
- "proc-macro2",
231
- ]
232
-
233
- [[package]]
234
- name = "redox_syscall"
235
- version = "0.4.1"
236
- source = "registry+https://github.com/rust-lang/crates.io-index"
237
- checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
238
- dependencies = [
239
- "bitflags 1.3.2",
240
- ]
241
-
242
- [[package]]
243
- name = "rustix"
244
- version = "0.38.31"
245
- source = "registry+https://github.com/rust-lang/crates.io-index"
246
- checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
247
- dependencies = [
248
- "bitflags 2.4.0",
249
- "errno",
250
- "libc",
251
- "linux-raw-sys",
252
- "windows-sys",
253
- ]
254
-
255
- [[package]]
256
- name = "scopeguard"
257
- version = "1.2.0"
258
- source = "registry+https://github.com/rust-lang/crates.io-index"
259
- checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
260
-
261
- [[package]]
262
- name = "smallvec"
263
- version = "1.13.1"
264
- source = "registry+https://github.com/rust-lang/crates.io-index"
265
- checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
266
-
267
- [[package]]
268
- name = "syn"
269
- version = "2.0.50"
270
- source = "registry+https://github.com/rust-lang/crates.io-index"
271
- checksum = "74f1bdc9872430ce9b75da68329d1c1746faf50ffac5f19e02b71e37ff881ffb"
272
- dependencies = [
273
- "proc-macro2",
274
- "quote",
275
- "unicode-ident",
276
- ]
277
-
278
- [[package]]
279
- name = "target-lexicon"
280
- version = "0.12.14"
281
- source = "registry+https://github.com/rust-lang/crates.io-index"
282
- checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
283
-
284
- [[package]]
285
- name = "unicode-ident"
286
- version = "1.0.12"
287
- source = "registry+https://github.com/rust-lang/crates.io-index"
288
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
289
-
290
- [[package]]
291
- name = "unindent"
292
- version = "0.2.3"
293
- source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
295
-
296
- [[package]]
297
- name = "which"
298
- version = "6.0.0"
299
- source = "registry+https://github.com/rust-lang/crates.io-index"
300
- checksum = "7fa5e0c10bf77f44aac573e498d1a82d5fbd5e91f6fc0a99e7be4b38e85e101c"
301
- dependencies = [
302
- "either",
303
- "home",
304
- "once_cell",
305
- "rustix",
306
- "windows-sys",
307
- ]
308
-
309
- [[package]]
310
- name = "windows"
311
- version = "0.53.0"
312
- source = "registry+https://github.com/rust-lang/crates.io-index"
313
- checksum = "efc5cf48f83140dcaab716eeaea345f9e93d0018fb81162753a3f76c3397b538"
314
- dependencies = [
315
- "windows-core",
316
- "windows-targets 0.52.3",
317
- ]
318
-
319
- [[package]]
320
- name = "windows-core"
321
- version = "0.53.0"
322
- source = "registry+https://github.com/rust-lang/crates.io-index"
323
- checksum = "9dcc5b895a6377f1ab9fa55acedab1fd5ac0db66ad1e6c7f47e28a22e446a5dd"
324
- dependencies = [
325
- "windows-result",
326
- "windows-targets 0.52.3",
327
- ]
328
-
329
- [[package]]
330
- name = "windows-result"
331
- version = "0.1.0"
332
- source = "registry+https://github.com/rust-lang/crates.io-index"
333
- checksum = "cd19df78e5168dfb0aedc343d1d1b8d422ab2db6756d2dc3fef75035402a3f64"
334
- dependencies = [
335
- "windows-targets 0.52.3",
336
- ]
337
-
338
- [[package]]
339
- name = "windows-sys"
340
- version = "0.52.0"
341
- source = "registry+https://github.com/rust-lang/crates.io-index"
342
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
343
- dependencies = [
344
- "windows-targets 0.52.3",
345
- ]
346
-
347
- [[package]]
348
- name = "windows-targets"
349
- version = "0.48.5"
350
- source = "registry+https://github.com/rust-lang/crates.io-index"
351
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
352
- dependencies = [
353
- "windows_aarch64_gnullvm 0.48.5",
354
- "windows_aarch64_msvc 0.48.5",
355
- "windows_i686_gnu 0.48.5",
356
- "windows_i686_msvc 0.48.5",
357
- "windows_x86_64_gnu 0.48.5",
358
- "windows_x86_64_gnullvm 0.48.5",
359
- "windows_x86_64_msvc 0.48.5",
360
- ]
361
-
362
- [[package]]
363
- name = "windows-targets"
364
- version = "0.52.3"
365
- source = "registry+https://github.com/rust-lang/crates.io-index"
366
- checksum = "d380ba1dc7187569a8a9e91ed34b8ccfc33123bbacb8c0aed2d1ad7f3ef2dc5f"
367
- dependencies = [
368
- "windows_aarch64_gnullvm 0.52.3",
369
- "windows_aarch64_msvc 0.52.3",
370
- "windows_i686_gnu 0.52.3",
371
- "windows_i686_msvc 0.52.3",
372
- "windows_x86_64_gnu 0.52.3",
373
- "windows_x86_64_gnullvm 0.52.3",
374
- "windows_x86_64_msvc 0.52.3",
375
- ]
376
-
377
- [[package]]
378
- name = "windows_aarch64_gnullvm"
379
- version = "0.48.5"
380
- source = "registry+https://github.com/rust-lang/crates.io-index"
381
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
382
-
383
- [[package]]
384
- name = "windows_aarch64_gnullvm"
385
- version = "0.52.3"
386
- source = "registry+https://github.com/rust-lang/crates.io-index"
387
- checksum = "68e5dcfb9413f53afd9c8f86e56a7b4d86d9a2fa26090ea2dc9e40fba56c6ec6"
388
-
389
- [[package]]
390
- name = "windows_aarch64_msvc"
391
- version = "0.48.5"
392
- source = "registry+https://github.com/rust-lang/crates.io-index"
393
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
394
-
395
- [[package]]
396
- name = "windows_aarch64_msvc"
397
- version = "0.52.3"
398
- source = "registry+https://github.com/rust-lang/crates.io-index"
399
- checksum = "8dab469ebbc45798319e69eebf92308e541ce46760b49b18c6b3fe5e8965b30f"
400
-
401
- [[package]]
402
- name = "windows_i686_gnu"
403
- version = "0.48.5"
404
- source = "registry+https://github.com/rust-lang/crates.io-index"
405
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
406
-
407
- [[package]]
408
- name = "windows_i686_gnu"
409
- version = "0.52.3"
410
- source = "registry+https://github.com/rust-lang/crates.io-index"
411
- checksum = "2a4e9b6a7cac734a8b4138a4e1044eac3404d8326b6c0f939276560687a033fb"
412
-
413
- [[package]]
414
- name = "windows_i686_msvc"
415
- version = "0.48.5"
416
- source = "registry+https://github.com/rust-lang/crates.io-index"
417
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
418
-
419
- [[package]]
420
- name = "windows_i686_msvc"
421
- version = "0.52.3"
422
- source = "registry+https://github.com/rust-lang/crates.io-index"
423
- checksum = "28b0ec9c422ca95ff34a78755cfa6ad4a51371da2a5ace67500cf7ca5f232c58"
424
-
425
- [[package]]
426
- name = "windows_x86_64_gnu"
427
- version = "0.48.5"
428
- source = "registry+https://github.com/rust-lang/crates.io-index"
429
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
430
-
431
- [[package]]
432
- name = "windows_x86_64_gnu"
433
- version = "0.52.3"
434
- source = "registry+https://github.com/rust-lang/crates.io-index"
435
- checksum = "704131571ba93e89d7cd43482277d6632589b18ecf4468f591fbae0a8b101614"
436
-
437
- [[package]]
438
- name = "windows_x86_64_gnullvm"
439
- version = "0.48.5"
440
- source = "registry+https://github.com/rust-lang/crates.io-index"
441
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
442
-
443
- [[package]]
444
- name = "windows_x86_64_gnullvm"
445
- version = "0.52.3"
446
- source = "registry+https://github.com/rust-lang/crates.io-index"
447
- checksum = "42079295511643151e98d61c38c0acc444e52dd42ab456f7ccfd5152e8ecf21c"
448
-
449
- [[package]]
450
- name = "windows_x86_64_msvc"
451
- version = "0.48.5"
452
- source = "registry+https://github.com/rust-lang/crates.io-index"
453
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
454
-
455
- [[package]]
456
- name = "windows_x86_64_msvc"
457
- version = "0.52.3"
458
- source = "registry+https://github.com/rust-lang/crates.io-index"
459
- checksum = "0770833d60a970638e989b3fa9fd2bb1aaadcf88963d1659fd7d9990196ed2d6"
460
-
461
- [[package]]
462
- name = "winpty-rs"
463
- version = "0.3.15"
464
- source = "registry+https://github.com/rust-lang/crates.io-index"
465
- checksum = "499068478084e81d3686b29aa83bf9f013fc6e20e78024e35cd7653408b32ce9"
466
- dependencies = [
467
- "bitflags 2.4.0",
468
- "enum-primitive-derive",
469
- "num-traits",
470
- "which",
471
- "windows",
472
- ]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes