endec 0.5.0__tar.gz → 0.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {endec-0.5.0 → endec-0.5.1}/.github/workflows/build.yml +17 -17
- {endec-0.5.0 → endec-0.5.1}/.github/workflows/test.yml +2 -2
- {endec-0.5.0 → endec-0.5.1}/Cargo.lock +15 -15
- {endec-0.5.0 → endec-0.5.1}/Cargo.toml +2 -2
- {endec-0.5.0 → endec-0.5.1}/PKG-INFO +2 -2
- {endec-0.5.0 → endec-0.5.1}/pyproject.toml +1 -1
- {endec-0.5.0 → endec-0.5.1}/rust-toolchain.toml +1 -1
- {endec-0.5.0 → endec-0.5.1}/.gitignore +0 -0
- {endec-0.5.0 → endec-0.5.1}/LICENSE +0 -0
- {endec-0.5.0 → endec-0.5.1}/README.md +0 -0
- {endec-0.5.0 → endec-0.5.1}/python/endec/__init__.py +0 -0
- {endec-0.5.0 → endec-0.5.1}/python/endec/_endec.pyi +0 -0
- {endec-0.5.0 → endec-0.5.1}/python/endec/exceptions.py +0 -0
- {endec-0.5.0 → endec-0.5.1}/python/endec/py.typed +0 -0
- {endec-0.5.0 → endec-0.5.1}/renovate.json +0 -0
- {endec-0.5.0 → endec-0.5.1}/src/decode.rs +0 -0
- {endec-0.5.0 → endec-0.5.1}/src/encode.rs +0 -0
- {endec-0.5.0 → endec-0.5.1}/src/ffi/exceptions.rs +0 -0
- {endec-0.5.0 → endec-0.5.1}/src/ffi/mod.rs +0 -0
- {endec-0.5.0 → endec-0.5.1}/src/lib.rs +0 -0
- {endec-0.5.0 → endec-0.5.1}/tests/test_decode.py +0 -0
- {endec-0.5.0 → endec-0.5.1}/tests/test_encode.py +0 -0
- {endec-0.5.0 → endec-0.5.1}/tests/test_iso2022jp.py +0 -0
- {endec-0.5.0 → endec-0.5.1}/tox.ini +0 -0
|
@@ -20,7 +20,7 @@ permissions:
|
|
|
20
20
|
|
|
21
21
|
env:
|
|
22
22
|
# renovate: datasource=github-releases depName=PyO3/maturin
|
|
23
|
-
MATURIN_VERSION: v1.
|
|
23
|
+
MATURIN_VERSION: v1.11.0
|
|
24
24
|
UNIX_PYTHON_BUILD_VERSIONS: |
|
|
25
25
|
3.14
|
|
26
26
|
3.13
|
|
@@ -59,8 +59,8 @@ jobs:
|
|
|
59
59
|
- runner: ubuntu-24.04
|
|
60
60
|
target: ppc64le
|
|
61
61
|
steps:
|
|
62
|
-
- uses: actions/checkout@
|
|
63
|
-
- uses: actions/setup-python@
|
|
62
|
+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
63
|
+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
|
64
64
|
with:
|
|
65
65
|
python-version: ${{ env.UNIX_PYTHON_BUILD_VERSIONS }}
|
|
66
66
|
- run: |
|
|
@@ -74,7 +74,7 @@ jobs:
|
|
|
74
74
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
75
75
|
manylinux: auto
|
|
76
76
|
- name: Upload wheels
|
|
77
|
-
uses: actions/upload-artifact@
|
|
77
|
+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
78
78
|
with:
|
|
79
79
|
name: wheels-linux-${{ matrix.platform.target }}
|
|
80
80
|
path: dist
|
|
@@ -93,8 +93,8 @@ jobs:
|
|
|
93
93
|
- runner: ubuntu-24.04
|
|
94
94
|
target: armv7
|
|
95
95
|
steps:
|
|
96
|
-
- uses: actions/checkout@
|
|
97
|
-
- uses: actions/setup-python@
|
|
96
|
+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
97
|
+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
|
98
98
|
with:
|
|
99
99
|
python-version: ${{ env.UNIX_PYTHON_BUILD_VERSIONS }}
|
|
100
100
|
- run: |
|
|
@@ -108,7 +108,7 @@ jobs:
|
|
|
108
108
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
109
109
|
manylinux: musllinux_1_2
|
|
110
110
|
- name: Upload wheels
|
|
111
|
-
uses: actions/upload-artifact@
|
|
111
|
+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
112
112
|
with:
|
|
113
113
|
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
114
114
|
path: dist
|
|
@@ -123,8 +123,8 @@ jobs:
|
|
|
123
123
|
- runner: windows-2025
|
|
124
124
|
target: x86
|
|
125
125
|
steps:
|
|
126
|
-
- uses: actions/checkout@
|
|
127
|
-
- uses: actions/setup-python@
|
|
126
|
+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
127
|
+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
|
128
128
|
with:
|
|
129
129
|
architecture: ${{ matrix.platform.target }}
|
|
130
130
|
python-version: ${{ env.WINDOWS_PYTHON_BUILD_VERSIONS }}
|
|
@@ -139,7 +139,7 @@ jobs:
|
|
|
139
139
|
args: --release --out dist --interpreter ${{ env.MATURIN_INTERPRETER_VERSIONS }}
|
|
140
140
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
141
141
|
- name: Upload wheels
|
|
142
|
-
uses: actions/upload-artifact@
|
|
142
|
+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
143
143
|
with:
|
|
144
144
|
name: wheels-windows-${{ matrix.platform.target }}
|
|
145
145
|
path: dist
|
|
@@ -154,8 +154,8 @@ jobs:
|
|
|
154
154
|
- runner: macos-15
|
|
155
155
|
target: aarch64
|
|
156
156
|
steps:
|
|
157
|
-
- uses: actions/checkout@
|
|
158
|
-
- uses: actions/setup-python@
|
|
157
|
+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
158
|
+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
|
159
159
|
with:
|
|
160
160
|
python-version: ${{ env.UNIX_PYTHON_BUILD_VERSIONS }}
|
|
161
161
|
- run: |
|
|
@@ -168,7 +168,7 @@ jobs:
|
|
|
168
168
|
args: --release --out dist --interpreter ${{ env.MATURIN_INTERPRETER_VERSIONS }}
|
|
169
169
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
170
170
|
- name: Upload wheels
|
|
171
|
-
uses: actions/upload-artifact@
|
|
171
|
+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
172
172
|
with:
|
|
173
173
|
name: wheels-macos-${{ matrix.platform.target }}
|
|
174
174
|
path: dist
|
|
@@ -176,7 +176,7 @@ jobs:
|
|
|
176
176
|
sdist:
|
|
177
177
|
runs-on: ubuntu-24.04
|
|
178
178
|
steps:
|
|
179
|
-
- uses: actions/checkout@
|
|
179
|
+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
180
180
|
- name: Build sdist
|
|
181
181
|
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
|
|
182
182
|
with:
|
|
@@ -184,7 +184,7 @@ jobs:
|
|
|
184
184
|
command: sdist
|
|
185
185
|
args: --out dist
|
|
186
186
|
- name: Upload sdist
|
|
187
|
-
uses: actions/upload-artifact@
|
|
187
|
+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
188
188
|
with:
|
|
189
189
|
name: wheels-sdist
|
|
190
190
|
path: dist
|
|
@@ -202,9 +202,9 @@ jobs:
|
|
|
202
202
|
# Used to generate artifact attestation
|
|
203
203
|
attestations: write
|
|
204
204
|
steps:
|
|
205
|
-
- uses: actions/download-artifact@
|
|
205
|
+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
|
|
206
206
|
- name: Generate artifact attestation
|
|
207
|
-
uses: actions/attest-build-provenance@
|
|
207
|
+
uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0
|
|
208
208
|
with:
|
|
209
209
|
subject-path: 'wheels-*/*'
|
|
210
210
|
- name: Publish to PyPI
|
|
@@ -19,8 +19,8 @@ jobs:
|
|
|
19
19
|
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]
|
|
20
20
|
|
|
21
21
|
steps:
|
|
22
|
-
- uses: actions/checkout@
|
|
23
|
-
- uses: actions/setup-python@
|
|
22
|
+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
23
|
+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
|
24
24
|
with:
|
|
25
25
|
python-version: "${{ matrix.python-version }}"
|
|
26
26
|
allow-prereleases: true
|
|
@@ -25,7 +25,7 @@ dependencies = [
|
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "endec"
|
|
28
|
-
version = "0.5.
|
|
28
|
+
version = "0.5.1"
|
|
29
29
|
dependencies = [
|
|
30
30
|
"encoding_rs",
|
|
31
31
|
"pyo3",
|
|
@@ -84,9 +84,9 @@ dependencies = [
|
|
|
84
84
|
|
|
85
85
|
[[package]]
|
|
86
86
|
name = "pyo3"
|
|
87
|
-
version = "0.27.
|
|
87
|
+
version = "0.27.2"
|
|
88
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
-
checksum = "
|
|
89
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
90
90
|
dependencies = [
|
|
91
91
|
"indoc",
|
|
92
92
|
"libc",
|
|
@@ -101,18 +101,18 @@ dependencies = [
|
|
|
101
101
|
|
|
102
102
|
[[package]]
|
|
103
103
|
name = "pyo3-build-config"
|
|
104
|
-
version = "0.27.
|
|
104
|
+
version = "0.27.2"
|
|
105
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
-
checksum = "
|
|
106
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
107
107
|
dependencies = [
|
|
108
108
|
"target-lexicon",
|
|
109
109
|
]
|
|
110
110
|
|
|
111
111
|
[[package]]
|
|
112
112
|
name = "pyo3-ffi"
|
|
113
|
-
version = "0.27.
|
|
113
|
+
version = "0.27.2"
|
|
114
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
-
checksum = "
|
|
115
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
116
116
|
dependencies = [
|
|
117
117
|
"libc",
|
|
118
118
|
"pyo3-build-config",
|
|
@@ -120,9 +120,9 @@ dependencies = [
|
|
|
120
120
|
|
|
121
121
|
[[package]]
|
|
122
122
|
name = "pyo3-macros"
|
|
123
|
-
version = "0.27.
|
|
123
|
+
version = "0.27.2"
|
|
124
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
-
checksum = "
|
|
125
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
126
126
|
dependencies = [
|
|
127
127
|
"proc-macro2",
|
|
128
128
|
"pyo3-macros-backend",
|
|
@@ -132,9 +132,9 @@ dependencies = [
|
|
|
132
132
|
|
|
133
133
|
[[package]]
|
|
134
134
|
name = "pyo3-macros-backend"
|
|
135
|
-
version = "0.27.
|
|
135
|
+
version = "0.27.2"
|
|
136
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
-
checksum = "
|
|
137
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
138
138
|
dependencies = [
|
|
139
139
|
"heck",
|
|
140
140
|
"proc-macro2",
|
|
@@ -145,9 +145,9 @@ dependencies = [
|
|
|
145
145
|
|
|
146
146
|
[[package]]
|
|
147
147
|
name = "quote"
|
|
148
|
-
version = "1.0.
|
|
148
|
+
version = "1.0.42"
|
|
149
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
-
checksum = "
|
|
150
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
151
151
|
dependencies = [
|
|
152
152
|
"proc-macro2",
|
|
153
153
|
]
|
|
@@ -160,9 +160,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
160
160
|
|
|
161
161
|
[[package]]
|
|
162
162
|
name = "syn"
|
|
163
|
-
version = "2.0.
|
|
163
|
+
version = "2.0.111"
|
|
164
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
165
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
166
166
|
dependencies = [
|
|
167
167
|
"proc-macro2",
|
|
168
168
|
"quote",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: endec
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Classifier: License :: OSI Approved :: MIT License
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: Natural Language :: English
|
|
@@ -24,9 +24,9 @@ Keywords: encoding_rs,web,codec
|
|
|
24
24
|
Author-email: Thitat Auareesuksakul <flux@thitat.net>
|
|
25
25
|
Requires-Python: >=3.8
|
|
26
26
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
27
|
+
Project-URL: Changelog, https://github.com/fluxth/endec/releases
|
|
27
28
|
Project-URL: Homepage, https://github.com/fluxth/endec
|
|
28
29
|
Project-URL: Source, https://github.com/fluxth/endec
|
|
29
|
-
Project-URL: Changelog, https://github.com/fluxth/endec/releases
|
|
30
30
|
|
|
31
31
|
# endec
|
|
32
32
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|