pywinpty 2.0.13__tar.gz → 2.0.15__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.15}/.github/workflows/windows_build.yml +18 -2
  2. {pywinpty-2.0.13 → pywinpty-2.0.15}/.github/workflows/windows_release.yml +18 -2
  3. {pywinpty-2.0.13 → pywinpty-2.0.15}/.gitignore +4 -0
  4. {pywinpty-2.0.13 → pywinpty-2.0.15}/CHANGELOG.md +22 -0
  5. pywinpty-2.0.15/Cargo.lock +535 -0
  6. {pywinpty-2.0.13 → pywinpty-2.0.15}/Cargo.toml +3 -3
  7. {pywinpty-2.0.13 → pywinpty-2.0.15}/PKG-INFO +3 -3
  8. {pywinpty-2.0.13 → pywinpty-2.0.15}/pyproject.toml +2 -1
  9. {pywinpty-2.0.13 → pywinpty-2.0.15}/src/lib.rs +2 -2
  10. pywinpty-2.0.13/Cargo.lock +0 -472
  11. {pywinpty-2.0.13 → pywinpty-2.0.15}/.github/dependabot.yml +0 -0
  12. {pywinpty-2.0.13 → pywinpty-2.0.15}/.github/scripts/copy_winpty.sh +0 -0
  13. {pywinpty-2.0.13 → pywinpty-2.0.15}/.github/workflows/linux_sdist.yml +0 -0
  14. {pywinpty-2.0.13 → pywinpty-2.0.15}/LICENSE.txt +0 -0
  15. {pywinpty-2.0.13 → pywinpty-2.0.15}/MANIFEST.in +0 -0
  16. {pywinpty-2.0.13 → pywinpty-2.0.15}/README.md +0 -0
  17. {pywinpty-2.0.13 → pywinpty-2.0.15}/RELEASE.md +0 -0
  18. {pywinpty-2.0.13 → pywinpty-2.0.15}/runtests.py +0 -0
  19. {pywinpty-2.0.13 → pywinpty-2.0.15}/winpty/__init__.py +0 -0
  20. {pywinpty-2.0.13 → pywinpty-2.0.15}/winpty/enums.py +0 -0
  21. {pywinpty-2.0.13 → pywinpty-2.0.15}/winpty/ptyprocess.py +0 -0
  22. {pywinpty-2.0.13 → pywinpty-2.0.15}/winpty/tests/__init__.py +0 -0
  23. {pywinpty-2.0.13 → pywinpty-2.0.15}/winpty/tests/test_pty.py +0 -0
  24. {pywinpty-2.0.13 → pywinpty-2.0.15}/winpty/tests/test_ptyprocess.py +0 -0
  25. {pywinpty-2.0.13 → pywinpty-2.0.15}/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", "3.13t"]
24
24
  steps:
25
25
  - name: Checkout branch
26
26
  uses: actions/checkout@v4
@@ -31,13 +31,29 @@ jobs:
31
31
  target: x86_64-pc-windows-msvc
32
32
  override: true
33
33
  components: rustfmt, clippy
34
+ - name: Remove free-threaded suffix from version
35
+ env:
36
+ PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
37
+ shell: bash -l {0}
38
+ run: |
39
+ PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION
40
+ if [[ $PYTHON_VERSION = *t ]]; then
41
+ PYTHON_VERSION_NONSUFFIX=${PYTHON_VERSION//t}
42
+ echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
43
+ fi
44
+ echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
34
45
  - name: Install miniconda
35
46
  uses: conda-incubator/setup-miniconda@v3
36
47
  with:
37
48
  auto-update-conda: true
38
49
  activate-environment: test
39
50
  channels: conda-forge,defaults
40
- python-version: ${{ matrix.PYTHON_VERSION }}
51
+ python-version: ${{ env.PYTHON_VERSION_NONSUFFIX }}
52
+ - name: Reinstall free-threaded Python
53
+ if: ${{ endsWith(matrix.PYTHON_VERSION, 't') }}
54
+ shell: bash -l {0}
55
+ run: |
56
+ conda install --override-channels -c conda-forge python-freethreading
41
57
  - name: Conda env info
42
58
  shell: bash -l {0}
43
59
  run: conda env list
@@ -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", "3.13t"]
19
19
  steps:
20
20
  - name: Checkout branch
21
21
  uses: actions/checkout@v4
@@ -26,13 +26,29 @@ jobs:
26
26
  target: x86_64-pc-windows-msvc
27
27
  override: true
28
28
  components: rustfmt, clippy
29
+ - name: Remove free-threaded suffix from version
30
+ env:
31
+ PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
32
+ shell: bash -l {0}
33
+ run: |
34
+ PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION
35
+ if [[ $PYTHON_VERSION = *t ]]; then
36
+ PYTHON_VERSION_NONSUFFIX=${PYTHON_VERSION//t}
37
+ echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
38
+ fi
39
+ echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
29
40
  - name: Install miniconda
30
41
  uses: conda-incubator/setup-miniconda@v3
31
42
  with:
32
43
  auto-update-conda: true
33
44
  activate-environment: test
34
45
  channels: conda-forge,defaults
35
- python-version: ${{ matrix.PYTHON_VERSION }}
46
+ python-version: ${{ env.PYTHON_VERSION_NONSUFFIX }}
47
+ - name: Reinstall free-threaded Python
48
+ if: ${{ endsWith(matrix.PYTHON_VERSION, 't') }}
49
+ shell: bash -l {0}
50
+ run: |
51
+ conda install --override-channels -c conda-forge python-freethreading
36
52
  - name: Conda env info
37
53
  shell: bash -l {0}
38
54
  run: conda env list
@@ -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,25 @@
1
+ ## Version 2.0.15 (2025/02/03)
2
+
3
+
4
+ ### Pull Requests Merged
5
+
6
+ * [PR 492](https://github.com/andfoy/pywinpty/pull/492) - Add version to pyproject.toml, by [@finnagin](https://github.com/finnagin)
7
+ * [PR 488](https://github.com/andfoy/pywinpty/pull/488) - Bump pyo3 from 0.22.5 to 0.23.4, by [@dependabot[bot]](https://github.com/apps/dependabot) ([491](https://github.com/andfoy/pywinpty/issues/491), [](https://github.com/<code>/issues/))
8
+
9
+ In this release 2 pull requests were closed.
10
+
11
+
12
+ ## Version 2.0.14 (2024/10/17)
13
+
14
+
15
+ ### Pull Requests Merged
16
+
17
+ * [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)
18
+ * [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))
19
+
20
+ In this release 2 pull requests were closed.
21
+
22
+
1
23
  ## Version 2.0.13 (2024/02/26)
2
24
 
3
25
 
@@ -0,0 +1,535 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
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.8.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
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 = "env_home"
42
+ version = "0.1.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
45
+
46
+ [[package]]
47
+ name = "errno"
48
+ version = "0.3.10"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
51
+ dependencies = [
52
+ "libc",
53
+ "windows-sys",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "heck"
58
+ version = "0.5.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
61
+
62
+ [[package]]
63
+ name = "indoc"
64
+ version = "2.0.5"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
67
+
68
+ [[package]]
69
+ name = "libc"
70
+ version = "0.2.169"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
73
+
74
+ [[package]]
75
+ name = "linux-raw-sys"
76
+ version = "0.4.15"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
79
+
80
+ [[package]]
81
+ name = "memoffset"
82
+ version = "0.9.1"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
85
+ dependencies = [
86
+ "autocfg",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "num-traits"
91
+ version = "0.2.19"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
94
+ dependencies = [
95
+ "autocfg",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "once_cell"
100
+ version = "1.20.2"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
103
+
104
+ [[package]]
105
+ name = "portable-atomic"
106
+ version = "1.10.0"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
109
+
110
+ [[package]]
111
+ name = "proc-macro2"
112
+ version = "1.0.93"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
115
+ dependencies = [
116
+ "unicode-ident",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "pyo3"
121
+ version = "0.23.4"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "57fe09249128b3173d092de9523eaa75136bf7ba85e0d69eca241c7939c933cc"
124
+ dependencies = [
125
+ "cfg-if",
126
+ "indoc",
127
+ "libc",
128
+ "memoffset",
129
+ "once_cell",
130
+ "portable-atomic",
131
+ "pyo3-build-config",
132
+ "pyo3-ffi",
133
+ "pyo3-macros",
134
+ "unindent",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "pyo3-build-config"
139
+ version = "0.23.4"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "1cd3927b5a78757a0d71aa9dff669f903b1eb64b54142a9bd9f757f8fde65fd7"
142
+ dependencies = [
143
+ "once_cell",
144
+ "target-lexicon",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "pyo3-ffi"
149
+ version = "0.23.4"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "dab6bb2102bd8f991e7749f130a70d05dd557613e39ed2deeee8e9ca0c4d548d"
152
+ dependencies = [
153
+ "libc",
154
+ "pyo3-build-config",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "pyo3-macros"
159
+ version = "0.23.4"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "91871864b353fd5ffcb3f91f2f703a22a9797c91b9ab497b1acac7b07ae509c7"
162
+ dependencies = [
163
+ "proc-macro2",
164
+ "pyo3-macros-backend",
165
+ "quote",
166
+ "syn",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "pyo3-macros-backend"
171
+ version = "0.23.4"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "43abc3b80bc20f3facd86cd3c60beed58c3e2aa26213f3cda368de39c60a27e4"
174
+ dependencies = [
175
+ "heck",
176
+ "proc-macro2",
177
+ "pyo3-build-config",
178
+ "quote",
179
+ "syn",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "pywinpty"
184
+ version = "2.0.15"
185
+ dependencies = [
186
+ "pyo3",
187
+ "winpty-rs",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "quote"
192
+ version = "1.0.38"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
195
+ dependencies = [
196
+ "proc-macro2",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "rustix"
201
+ version = "0.38.44"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
204
+ dependencies = [
205
+ "bitflags",
206
+ "errno",
207
+ "libc",
208
+ "linux-raw-sys",
209
+ "windows-sys",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "syn"
214
+ version = "2.0.98"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
217
+ dependencies = [
218
+ "proc-macro2",
219
+ "quote",
220
+ "unicode-ident",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "target-lexicon"
225
+ version = "0.12.16"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
228
+
229
+ [[package]]
230
+ name = "unicode-ident"
231
+ version = "1.0.16"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
234
+
235
+ [[package]]
236
+ name = "unindent"
237
+ version = "0.2.3"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
240
+
241
+ [[package]]
242
+ name = "which"
243
+ version = "7.0.1"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028"
246
+ dependencies = [
247
+ "either",
248
+ "env_home",
249
+ "rustix",
250
+ "winsafe",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "windows"
255
+ version = "0.58.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
258
+ dependencies = [
259
+ "windows-core 0.58.0",
260
+ "windows-targets 0.52.6",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "windows"
265
+ version = "0.59.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "7f919aee0a93304be7f62e8e5027811bbba96bcb1de84d6618be56e43f8a32a1"
268
+ dependencies = [
269
+ "windows-core 0.59.0",
270
+ "windows-targets 0.53.0",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "windows-core"
275
+ version = "0.58.0"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
278
+ dependencies = [
279
+ "windows-implement 0.58.0",
280
+ "windows-interface 0.58.0",
281
+ "windows-result 0.2.0",
282
+ "windows-strings 0.1.0",
283
+ "windows-targets 0.52.6",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "windows-core"
288
+ version = "0.59.0"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "810ce18ed2112484b0d4e15d022e5f598113e220c53e373fb31e67e21670c1ce"
291
+ dependencies = [
292
+ "windows-implement 0.59.0",
293
+ "windows-interface 0.59.0",
294
+ "windows-result 0.3.0",
295
+ "windows-strings 0.3.0",
296
+ "windows-targets 0.53.0",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "windows-implement"
301
+ version = "0.58.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
304
+ dependencies = [
305
+ "proc-macro2",
306
+ "quote",
307
+ "syn",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "windows-implement"
312
+ version = "0.59.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "83577b051e2f49a058c308f17f273b570a6a758386fc291b5f6a934dd84e48c1"
315
+ dependencies = [
316
+ "proc-macro2",
317
+ "quote",
318
+ "syn",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "windows-interface"
323
+ version = "0.58.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
326
+ dependencies = [
327
+ "proc-macro2",
328
+ "quote",
329
+ "syn",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "windows-interface"
334
+ version = "0.59.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "cb26fd936d991781ea39e87c3a27285081e3c0da5ca0fcbc02d368cc6f52ff01"
337
+ dependencies = [
338
+ "proc-macro2",
339
+ "quote",
340
+ "syn",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "windows-result"
345
+ version = "0.2.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
348
+ dependencies = [
349
+ "windows-targets 0.52.6",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "windows-result"
354
+ version = "0.3.0"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "d08106ce80268c4067c0571ca55a9b4e9516518eaa1a1fe9b37ca403ae1d1a34"
357
+ dependencies = [
358
+ "windows-targets 0.53.0",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "windows-strings"
363
+ version = "0.1.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
366
+ dependencies = [
367
+ "windows-result 0.2.0",
368
+ "windows-targets 0.52.6",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "windows-strings"
373
+ version = "0.3.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "b888f919960b42ea4e11c2f408fadb55f78a9f236d5eef084103c8ce52893491"
376
+ dependencies = [
377
+ "windows-targets 0.53.0",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "windows-sys"
382
+ version = "0.59.0"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
385
+ dependencies = [
386
+ "windows-targets 0.52.6",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "windows-targets"
391
+ version = "0.52.6"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
394
+ dependencies = [
395
+ "windows_aarch64_gnullvm 0.52.6",
396
+ "windows_aarch64_msvc 0.52.6",
397
+ "windows_i686_gnu 0.52.6",
398
+ "windows_i686_gnullvm 0.52.6",
399
+ "windows_i686_msvc 0.52.6",
400
+ "windows_x86_64_gnu 0.52.6",
401
+ "windows_x86_64_gnullvm 0.52.6",
402
+ "windows_x86_64_msvc 0.52.6",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "windows-targets"
407
+ version = "0.53.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
410
+ dependencies = [
411
+ "windows_aarch64_gnullvm 0.53.0",
412
+ "windows_aarch64_msvc 0.53.0",
413
+ "windows_i686_gnu 0.53.0",
414
+ "windows_i686_gnullvm 0.53.0",
415
+ "windows_i686_msvc 0.53.0",
416
+ "windows_x86_64_gnu 0.53.0",
417
+ "windows_x86_64_gnullvm 0.53.0",
418
+ "windows_x86_64_msvc 0.53.0",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "windows_aarch64_gnullvm"
423
+ version = "0.52.6"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
426
+
427
+ [[package]]
428
+ name = "windows_aarch64_gnullvm"
429
+ version = "0.53.0"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
432
+
433
+ [[package]]
434
+ name = "windows_aarch64_msvc"
435
+ version = "0.52.6"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
438
+
439
+ [[package]]
440
+ name = "windows_aarch64_msvc"
441
+ version = "0.53.0"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
444
+
445
+ [[package]]
446
+ name = "windows_i686_gnu"
447
+ version = "0.52.6"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
450
+
451
+ [[package]]
452
+ name = "windows_i686_gnu"
453
+ version = "0.53.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
456
+
457
+ [[package]]
458
+ name = "windows_i686_gnullvm"
459
+ version = "0.52.6"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
462
+
463
+ [[package]]
464
+ name = "windows_i686_gnullvm"
465
+ version = "0.53.0"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
468
+
469
+ [[package]]
470
+ name = "windows_i686_msvc"
471
+ version = "0.52.6"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
474
+
475
+ [[package]]
476
+ name = "windows_i686_msvc"
477
+ version = "0.53.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
480
+
481
+ [[package]]
482
+ name = "windows_x86_64_gnu"
483
+ version = "0.52.6"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
486
+
487
+ [[package]]
488
+ name = "windows_x86_64_gnu"
489
+ version = "0.53.0"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
492
+
493
+ [[package]]
494
+ name = "windows_x86_64_gnullvm"
495
+ version = "0.52.6"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
498
+
499
+ [[package]]
500
+ name = "windows_x86_64_gnullvm"
501
+ version = "0.53.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
504
+
505
+ [[package]]
506
+ name = "windows_x86_64_msvc"
507
+ version = "0.52.6"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
510
+
511
+ [[package]]
512
+ name = "windows_x86_64_msvc"
513
+ version = "0.53.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
516
+
517
+ [[package]]
518
+ name = "winpty-rs"
519
+ version = "0.4.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "067bd0835c7d94e21f436c6c735a0725d63276503045a65a0e43856746b1235d"
522
+ dependencies = [
523
+ "bitflags",
524
+ "enum-primitive-derive",
525
+ "num-traits",
526
+ "which",
527
+ "windows 0.58.0",
528
+ "windows 0.59.0",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "winsafe"
533
+ version = "0.0.19"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "pywinpty"
3
- version = "2.0.13"
3
+ version = "2.0.15"
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.23.4"
21
21
  features = ["extension-module"]
22
22
 
23
23
  [package.metadata.docs.rs]
@@ -1,13 +1,13 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pywinpty
3
- Version: 2.0.13
3
+ Version: 2.0.15
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
7
7
  Author: Edgar Andrés Margffoy Tuay <andfoy@gmail.com>
8
8
  Author-email: Edgar Andrés Margffoy Tuay <andfoy@gmail.com>
9
9
  License: MIT
10
- Requires-Python: >=3.8
10
+ Requires-Python: >=3.9
11
11
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
12
12
  Project-URL: Source Code, https://github.com/spyder-ide/pywinpty
13
13
 
@@ -1,6 +1,7 @@
1
1
  [project]
2
2
  name = "pywinpty"
3
- requires-python = ">=3.8"
3
+ requires-python = ">=3.9"
4
+ dynamic = ["version"]
4
5
 
5
6
  [build-system]
6
7
  requires = ["maturin>=1.1,<2.0"]
@@ -365,8 +365,8 @@ impl PyPTY {
365
365
  }
366
366
  }
367
367
 
368
- #[pymodule]
369
- fn winpty(py: Python, m: &PyModule) -> PyResult<()> {
368
+ #[pymodule(gil_used = false)]
369
+ fn winpty(py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {
370
370
  m.add("__version__", VERSION)?;
371
371
  m.add("WinptyError", py.get_type::<WinptyError>())?;
372
372
  m.add_class::<PyPTY>()?;
@@ -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