pywinpty 2.0.14__tar.gz → 3.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pywinpty-2.0.14 → pywinpty-3.0.0}/.github/workflows/windows_build.yml +23 -4
- {pywinpty-2.0.14 → pywinpty-3.0.0}/.github/workflows/windows_release.yml +21 -2
- {pywinpty-2.0.14 → pywinpty-3.0.0}/.gitignore +5 -1
- {pywinpty-2.0.14 → pywinpty-3.0.0}/CHANGELOG.md +22 -0
- pywinpty-3.0.0/Cargo.lock +530 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/Cargo.toml +6 -3
- pywinpty-3.0.0/PKG-INFO +5 -0
- pywinpty-3.0.0/build.rs +87 -0
- pywinpty-3.0.0/nuget.config +7 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/pyproject.toml +2 -1
- {pywinpty-2.0.14 → pywinpty-3.0.0}/src/lib.rs +51 -29
- {pywinpty-2.0.14 → pywinpty-3.0.0}/winpty/ptyprocess.py +21 -12
- {pywinpty-2.0.14 → pywinpty-3.0.0}/winpty/tests/test_pty.py +20 -18
- {pywinpty-2.0.14 → pywinpty-3.0.0}/winpty/tests/test_ptyprocess.py +7 -4
- {pywinpty-2.0.14 → pywinpty-3.0.0}/winpty/winpty.pyi +13 -7
- pywinpty-2.0.14/Cargo.lock +0 -410
- pywinpty-2.0.14/PKG-INFO +0 -145
- {pywinpty-2.0.14 → pywinpty-3.0.0}/.github/dependabot.yml +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/.github/scripts/copy_winpty.sh +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/.github/workflows/linux_sdist.yml +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/LICENSE.txt +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/MANIFEST.in +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/README.md +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/RELEASE.md +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/runtests.py +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/winpty/__init__.py +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/winpty/enums.py +0 -0
- {pywinpty-2.0.14 → pywinpty-3.0.0}/winpty/tests/__init__.py +0 -0
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
strategy:
|
|
21
21
|
fail-fast: false
|
|
22
22
|
matrix:
|
|
23
|
-
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
|
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,32 @@ jobs:
|
|
|
31
31
|
target: x86_64-pc-windows-msvc
|
|
32
32
|
override: true
|
|
33
33
|
components: rustfmt, clippy
|
|
34
|
+
- uses: nuget/setup-nuget@v2
|
|
35
|
+
with:
|
|
36
|
+
nuget-version: '5.x'
|
|
37
|
+
- name: Remove free-threaded suffix from version
|
|
38
|
+
env:
|
|
39
|
+
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
|
|
40
|
+
shell: bash -l {0}
|
|
41
|
+
run: |
|
|
42
|
+
PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION
|
|
43
|
+
if [[ $PYTHON_VERSION = *t ]]; then
|
|
44
|
+
PYTHON_VERSION_NONSUFFIX=${PYTHON_VERSION//t}
|
|
45
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
46
|
+
fi
|
|
47
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
34
48
|
- name: Install miniconda
|
|
35
49
|
uses: conda-incubator/setup-miniconda@v3
|
|
36
50
|
with:
|
|
37
51
|
auto-update-conda: true
|
|
38
52
|
activate-environment: test
|
|
39
53
|
channels: conda-forge,defaults
|
|
40
|
-
python-version: ${{
|
|
54
|
+
python-version: ${{ env.PYTHON_VERSION_NONSUFFIX }}
|
|
55
|
+
- name: Reinstall free-threaded Python
|
|
56
|
+
if: ${{ endsWith(matrix.PYTHON_VERSION, 't') }}
|
|
57
|
+
shell: bash -l {0}
|
|
58
|
+
run: |
|
|
59
|
+
conda install --override-channels -c conda-forge python-freethreading
|
|
41
60
|
- name: Conda env info
|
|
42
61
|
shell: bash -l {0}
|
|
43
62
|
run: conda env list
|
|
@@ -56,13 +75,13 @@ jobs:
|
|
|
56
75
|
# Enable this to get RDP access to the worker.
|
|
57
76
|
# - name: Download
|
|
58
77
|
# # if: ${{ failure() }}
|
|
59
|
-
# run: Invoke-WebRequest https://bin.equinox.io/c/
|
|
78
|
+
# run: Invoke-WebRequest https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-windows-amd64.zip -OutFile ngrok.zip
|
|
60
79
|
# - name: Extract
|
|
61
80
|
# # if: ${{ failure() }}
|
|
62
81
|
# run: Expand-Archive ngrok.zip
|
|
63
82
|
# - name: Auth
|
|
64
83
|
# # if: ${{ failure() }}
|
|
65
|
-
# run: .\ngrok\ngrok.exe authtoken 1raaG4z7gsaCRlLw8cRkUWW6ItF_2LWTUFxXwd6UeeJNAAAci
|
|
84
|
+
# run: .\ngrok\ngrok.exe config add-authtoken 1raaG4z7gsaCRlLw8cRkUWW6ItF_2LWTUFxXwd6UeeJNAAAci
|
|
66
85
|
# - name: Enable TS
|
|
67
86
|
# # if: ${{ failure() }}
|
|
68
87
|
# run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
strategy:
|
|
16
16
|
fail-fast: false
|
|
17
17
|
matrix:
|
|
18
|
-
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
|
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,32 @@ jobs:
|
|
|
26
26
|
target: x86_64-pc-windows-msvc
|
|
27
27
|
override: true
|
|
28
28
|
components: rustfmt, clippy
|
|
29
|
+
- uses: nuget/setup-nuget@v2
|
|
30
|
+
with:
|
|
31
|
+
nuget-version: '5.x'
|
|
32
|
+
- name: Remove free-threaded suffix from version
|
|
33
|
+
env:
|
|
34
|
+
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
|
|
35
|
+
shell: bash -l {0}
|
|
36
|
+
run: |
|
|
37
|
+
PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION
|
|
38
|
+
if [[ $PYTHON_VERSION = *t ]]; then
|
|
39
|
+
PYTHON_VERSION_NONSUFFIX=${PYTHON_VERSION//t}
|
|
40
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
41
|
+
fi
|
|
42
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
29
43
|
- name: Install miniconda
|
|
30
44
|
uses: conda-incubator/setup-miniconda@v3
|
|
31
45
|
with:
|
|
32
46
|
auto-update-conda: true
|
|
33
47
|
activate-environment: test
|
|
34
48
|
channels: conda-forge,defaults
|
|
35
|
-
python-version: ${{
|
|
49
|
+
python-version: ${{ env.PYTHON_VERSION_NONSUFFIX }}
|
|
50
|
+
- name: Reinstall free-threaded Python
|
|
51
|
+
if: ${{ endsWith(matrix.PYTHON_VERSION, 't') }}
|
|
52
|
+
shell: bash -l {0}
|
|
53
|
+
run: |
|
|
54
|
+
conda install --override-channels -c conda-forge python-freethreading
|
|
36
55
|
- name: Conda env info
|
|
37
56
|
shell: bash -l {0}
|
|
38
57
|
run: conda env list
|
|
@@ -107,6 +107,7 @@ cywinpty.c
|
|
|
107
107
|
# Winpty binaries
|
|
108
108
|
*.exe
|
|
109
109
|
*.dll
|
|
110
|
+
*.lib
|
|
110
111
|
|
|
111
112
|
# Git giles
|
|
112
113
|
*.orig
|
|
@@ -121,4 +122,7 @@ cywinpty.c
|
|
|
121
122
|
CppProperties.json
|
|
122
123
|
|
|
123
124
|
# Debug VS files
|
|
124
|
-
*.sln
|
|
125
|
+
*.sln
|
|
126
|
+
|
|
127
|
+
# NuGet ConPTY package
|
|
128
|
+
Microsoft.Windows.Console.ConPTY*/
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## Version 3.0.0 (2025/08/12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Pull Requests Merged
|
|
5
|
+
|
|
6
|
+
* [PR 517](https://github.com/andfoy/pywinpty/pull/517) - Solve type issues, by [@XY0797](https://github.com/XY0797)
|
|
7
|
+
* [PR 515](https://github.com/andfoy/pywinpty/pull/515) - Update winpty-rs to v1.0.3, by [@andfoy](https://github.com/andfoy)
|
|
8
|
+
|
|
9
|
+
In this release 2 pull requests were closed.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## Version 2.0.15 (2025/02/03)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Pull Requests Merged
|
|
16
|
+
|
|
17
|
+
* [PR 492](https://github.com/andfoy/pywinpty/pull/492) - Add version to pyproject.toml, by [@finnagin](https://github.com/finnagin)
|
|
18
|
+
* [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/))
|
|
19
|
+
|
|
20
|
+
In this release 2 pull requests were closed.
|
|
21
|
+
|
|
22
|
+
|
|
1
23
|
## Version 2.0.14 (2024/10/17)
|
|
2
24
|
|
|
3
25
|
|
|
@@ -0,0 +1,530 @@
|
|
|
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.5.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "bitflags"
|
|
13
|
+
version = "2.9.1"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "crossbeam-channel"
|
|
19
|
+
version = "0.5.15"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"crossbeam-utils",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "crossbeam-utils"
|
|
28
|
+
version = "0.8.21"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "enum-primitive-derive"
|
|
34
|
+
version = "0.3.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "ba7795da175654fe16979af73f81f26a8ea27638d8d9823d317016888a63dc4c"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"num-traits",
|
|
39
|
+
"quote",
|
|
40
|
+
"syn",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "env_home"
|
|
45
|
+
version = "0.1.0"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "errno"
|
|
51
|
+
version = "0.3.13"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"libc",
|
|
56
|
+
"windows-sys",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "glob"
|
|
61
|
+
version = "0.3.2"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "heck"
|
|
67
|
+
version = "0.5.0"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "indoc"
|
|
73
|
+
version = "2.0.6"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "itoa"
|
|
79
|
+
version = "1.0.15"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "libc"
|
|
85
|
+
version = "0.2.175"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "linux-raw-sys"
|
|
91
|
+
version = "0.9.4"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "memchr"
|
|
97
|
+
version = "2.7.5"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "memoffset"
|
|
103
|
+
version = "0.9.1"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"autocfg",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "num-traits"
|
|
112
|
+
version = "0.2.19"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"autocfg",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "once_cell"
|
|
121
|
+
version = "1.21.3"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "portable-atomic"
|
|
127
|
+
version = "1.11.1"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "proc-macro2"
|
|
133
|
+
version = "1.0.95"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"unicode-ident",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "pyo3"
|
|
142
|
+
version = "0.25.1"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"indoc",
|
|
147
|
+
"libc",
|
|
148
|
+
"memoffset",
|
|
149
|
+
"once_cell",
|
|
150
|
+
"portable-atomic",
|
|
151
|
+
"pyo3-build-config",
|
|
152
|
+
"pyo3-ffi",
|
|
153
|
+
"pyo3-macros",
|
|
154
|
+
"unindent",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "pyo3-build-config"
|
|
159
|
+
version = "0.25.1"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"once_cell",
|
|
164
|
+
"target-lexicon",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "pyo3-ffi"
|
|
169
|
+
version = "0.25.1"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"libc",
|
|
174
|
+
"pyo3-build-config",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "pyo3-macros"
|
|
179
|
+
version = "0.25.1"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"proc-macro2",
|
|
184
|
+
"pyo3-macros-backend",
|
|
185
|
+
"quote",
|
|
186
|
+
"syn",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "pyo3-macros-backend"
|
|
191
|
+
version = "0.25.1"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"heck",
|
|
196
|
+
"proc-macro2",
|
|
197
|
+
"pyo3-build-config",
|
|
198
|
+
"quote",
|
|
199
|
+
"syn",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "pywinpty"
|
|
204
|
+
version = "3.0.0"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"glob",
|
|
207
|
+
"pyo3",
|
|
208
|
+
"winpty-rs",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "quote"
|
|
213
|
+
version = "1.0.40"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"proc-macro2",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "rustix"
|
|
222
|
+
version = "1.0.8"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"bitflags",
|
|
227
|
+
"errno",
|
|
228
|
+
"libc",
|
|
229
|
+
"linux-raw-sys",
|
|
230
|
+
"windows-sys",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "ryu"
|
|
235
|
+
version = "1.0.20"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "serde"
|
|
241
|
+
version = "1.0.219"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"serde_derive",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "serde_derive"
|
|
250
|
+
version = "1.0.219"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"proc-macro2",
|
|
255
|
+
"quote",
|
|
256
|
+
"syn",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "serde_json"
|
|
261
|
+
version = "1.0.142"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"itoa",
|
|
266
|
+
"memchr",
|
|
267
|
+
"ryu",
|
|
268
|
+
"serde",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "syn"
|
|
273
|
+
version = "2.0.104"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"proc-macro2",
|
|
278
|
+
"quote",
|
|
279
|
+
"unicode-ident",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "target-lexicon"
|
|
284
|
+
version = "0.13.2"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "unicode-ident"
|
|
290
|
+
version = "1.0.18"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "unindent"
|
|
296
|
+
version = "0.2.4"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "which"
|
|
302
|
+
version = "8.0.0"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"env_home",
|
|
307
|
+
"rustix",
|
|
308
|
+
"winsafe",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "windows"
|
|
313
|
+
version = "0.61.3"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"windows-collections",
|
|
318
|
+
"windows-core",
|
|
319
|
+
"windows-future",
|
|
320
|
+
"windows-link",
|
|
321
|
+
"windows-numerics",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "windows-bindgen"
|
|
326
|
+
version = "0.62.1"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "9b541b67bb66a43de06888703b15519e40b3fc9b65917dc1ccd71aecfd7c5703"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"serde",
|
|
331
|
+
"serde_json",
|
|
332
|
+
"windows-threading",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "windows-collections"
|
|
337
|
+
version = "0.2.0"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"windows-core",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "windows-core"
|
|
346
|
+
version = "0.61.2"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"windows-implement",
|
|
351
|
+
"windows-interface",
|
|
352
|
+
"windows-link",
|
|
353
|
+
"windows-result",
|
|
354
|
+
"windows-strings",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "windows-future"
|
|
359
|
+
version = "0.2.1"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"windows-core",
|
|
364
|
+
"windows-link",
|
|
365
|
+
"windows-threading",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "windows-implement"
|
|
370
|
+
version = "0.60.0"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"proc-macro2",
|
|
375
|
+
"quote",
|
|
376
|
+
"syn",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "windows-interface"
|
|
381
|
+
version = "0.59.1"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
384
|
+
dependencies = [
|
|
385
|
+
"proc-macro2",
|
|
386
|
+
"quote",
|
|
387
|
+
"syn",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "windows-link"
|
|
392
|
+
version = "0.1.3"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "windows-numerics"
|
|
398
|
+
version = "0.2.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"windows-core",
|
|
403
|
+
"windows-link",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "windows-result"
|
|
408
|
+
version = "0.3.4"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"windows-link",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "windows-strings"
|
|
417
|
+
version = "0.4.2"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"windows-link",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "windows-sys"
|
|
426
|
+
version = "0.60.2"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
429
|
+
dependencies = [
|
|
430
|
+
"windows-targets",
|
|
431
|
+
]
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "windows-targets"
|
|
435
|
+
version = "0.53.3"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"windows-link",
|
|
440
|
+
"windows_aarch64_gnullvm",
|
|
441
|
+
"windows_aarch64_msvc",
|
|
442
|
+
"windows_i686_gnu",
|
|
443
|
+
"windows_i686_gnullvm",
|
|
444
|
+
"windows_i686_msvc",
|
|
445
|
+
"windows_x86_64_gnu",
|
|
446
|
+
"windows_x86_64_gnullvm",
|
|
447
|
+
"windows_x86_64_msvc",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "windows-threading"
|
|
452
|
+
version = "0.1.0"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"windows-link",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "windows_aarch64_gnullvm"
|
|
461
|
+
version = "0.53.0"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "windows_aarch64_msvc"
|
|
467
|
+
version = "0.53.0"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "windows_i686_gnu"
|
|
473
|
+
version = "0.53.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "windows_i686_gnullvm"
|
|
479
|
+
version = "0.53.0"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "windows_i686_msvc"
|
|
485
|
+
version = "0.53.0"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "windows_x86_64_gnu"
|
|
491
|
+
version = "0.53.0"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "windows_x86_64_gnullvm"
|
|
497
|
+
version = "0.53.0"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "windows_x86_64_msvc"
|
|
503
|
+
version = "0.53.0"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "winpty-rs"
|
|
509
|
+
version = "1.0.3"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "540fb3075c343702700c078ca2e8783213f752c40876257d9fc868c54ba37ba9"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"bitflags",
|
|
514
|
+
"crossbeam-channel",
|
|
515
|
+
"enum-primitive-derive",
|
|
516
|
+
"glob",
|
|
517
|
+
"num-traits",
|
|
518
|
+
"which",
|
|
519
|
+
"windows",
|
|
520
|
+
"windows-bindgen",
|
|
521
|
+
"windows-core",
|
|
522
|
+
"windows-link",
|
|
523
|
+
"windows-strings",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "winsafe"
|
|
528
|
+
version = "0.0.19"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "pywinpty"
|
|
3
|
-
version = "
|
|
3
|
+
version = "3.0.0"
|
|
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"
|
|
@@ -13,11 +13,14 @@ edition = "2021"
|
|
|
13
13
|
name = "winpty"
|
|
14
14
|
crate-type = ["cdylib"]
|
|
15
15
|
|
|
16
|
+
[build-dependencies]
|
|
17
|
+
glob = "0.3.2"
|
|
18
|
+
|
|
16
19
|
[dependencies]
|
|
17
|
-
winpty-rs = "0.
|
|
20
|
+
winpty-rs = "1.0.3"
|
|
18
21
|
|
|
19
22
|
[dependencies.pyo3]
|
|
20
|
-
version = "0.
|
|
23
|
+
version = "0.25.1"
|
|
21
24
|
features = ["extension-module"]
|
|
22
25
|
|
|
23
26
|
[package.metadata.docs.rs]
|