cotengrust 0.1.3__tar.gz → 0.1.5__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.
- cotengrust-0.1.5/.github/dependabot.yml +18 -0
- cotengrust-0.1.5/.github/workflows/CI.yml +254 -0
- {cotengrust-0.1.3 → cotengrust-0.1.5}/Cargo.lock +84 -120
- {cotengrust-0.1.3 → cotengrust-0.1.5}/Cargo.toml +8 -6
- {cotengrust-0.1.3 → cotengrust-0.1.5}/PKG-INFO +64 -18
- {cotengrust-0.1.3 → cotengrust-0.1.5}/README.md +62 -16
- cotengrust-0.1.5/cotengrust.pyi +260 -0
- {cotengrust-0.1.3 → cotengrust-0.1.5}/pyproject.toml +1 -1
- {cotengrust-0.1.3 → cotengrust-0.1.5}/src/lib.rs +644 -193
- cotengrust-0.1.3/.github/workflows/CI.yml +0 -138
- {cotengrust-0.1.3 → cotengrust-0.1.5}/.gitignore +0 -0
- {cotengrust-0.1.3 → cotengrust-0.1.5}/LICENSE +0 -0
- {cotengrust-0.1.3 → cotengrust-0.1.5}/tests/test_cotengrust.py +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
# Enable Dependabot for GitHub Actions
|
|
9
|
+
- package-ecosystem: "github-actions"
|
|
10
|
+
directory: "/" # Location of your workflows, typically the root folder
|
|
11
|
+
schedule:
|
|
12
|
+
interval: "daily" # Frequency of update checks (daily, weekly, or monthly)
|
|
13
|
+
|
|
14
|
+
# Enable Dependabot for Rust dependencies
|
|
15
|
+
- package-ecosystem: "cargo"
|
|
16
|
+
directory: "/" # Location of your Cargo.toml file, typically the root folder
|
|
17
|
+
schedule:
|
|
18
|
+
interval: "weekly" # Frequency of update checks (daily, weekly, or monthly)
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
# This file is autogenerated by maturin v1.9.4
|
|
2
|
+
# To update, run
|
|
3
|
+
#
|
|
4
|
+
# maturin generate-ci github --pytest
|
|
5
|
+
#
|
|
6
|
+
name: CI
|
|
7
|
+
|
|
8
|
+
on:
|
|
9
|
+
push:
|
|
10
|
+
branches:
|
|
11
|
+
- main
|
|
12
|
+
- master
|
|
13
|
+
tags:
|
|
14
|
+
- '*'
|
|
15
|
+
pull_request:
|
|
16
|
+
workflow_dispatch:
|
|
17
|
+
|
|
18
|
+
permissions:
|
|
19
|
+
contents: read
|
|
20
|
+
|
|
21
|
+
jobs:
|
|
22
|
+
linux:
|
|
23
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
24
|
+
strategy:
|
|
25
|
+
matrix:
|
|
26
|
+
platform:
|
|
27
|
+
- runner: ubuntu-22.04
|
|
28
|
+
target: x86_64
|
|
29
|
+
- runner: ubuntu-22.04
|
|
30
|
+
target: x86
|
|
31
|
+
- runner: ubuntu-22.04
|
|
32
|
+
target: aarch64
|
|
33
|
+
- runner: ubuntu-22.04
|
|
34
|
+
target: armv7
|
|
35
|
+
- runner: ubuntu-22.04
|
|
36
|
+
target: s390x
|
|
37
|
+
- runner: ubuntu-22.04
|
|
38
|
+
target: ppc64le
|
|
39
|
+
steps:
|
|
40
|
+
- uses: actions/checkout@v5
|
|
41
|
+
- uses: actions/setup-python@v6
|
|
42
|
+
with:
|
|
43
|
+
python-version: 3.x
|
|
44
|
+
- name: Build wheels
|
|
45
|
+
uses: PyO3/maturin-action@v1
|
|
46
|
+
with:
|
|
47
|
+
target: ${{ matrix.platform.target }}
|
|
48
|
+
args: --release --out dist --find-interpreter
|
|
49
|
+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
50
|
+
manylinux: auto
|
|
51
|
+
- name: Upload wheels
|
|
52
|
+
uses: actions/upload-artifact@v4
|
|
53
|
+
with:
|
|
54
|
+
name: wheels-linux-${{ matrix.platform.target }}
|
|
55
|
+
path: dist
|
|
56
|
+
- name: pytest
|
|
57
|
+
if: ${{ startsWith(matrix.platform.target, 'x86_64') }}
|
|
58
|
+
shell: bash
|
|
59
|
+
run: |
|
|
60
|
+
set -e
|
|
61
|
+
python3 -m venv .venv
|
|
62
|
+
source .venv/bin/activate
|
|
63
|
+
pip install cotengrust --find-links dist --force-reinstall
|
|
64
|
+
pip install pytest
|
|
65
|
+
pytest
|
|
66
|
+
- name: pytest
|
|
67
|
+
if: ${{ !startsWith(matrix.platform.target, 'x86') && matrix.platform.target != 'ppc64' }}
|
|
68
|
+
uses: uraimo/run-on-arch-action@v3
|
|
69
|
+
with:
|
|
70
|
+
arch: ${{ matrix.platform.target }}
|
|
71
|
+
distro: ubuntu22.04
|
|
72
|
+
githubToken: ${{ github.token }}
|
|
73
|
+
install: |
|
|
74
|
+
apt-get update
|
|
75
|
+
apt-get install -y --no-install-recommends python3 python3-pip
|
|
76
|
+
pip3 install -U pip pytest
|
|
77
|
+
run: |
|
|
78
|
+
set -e
|
|
79
|
+
pip3 install cotengrust --find-links dist --force-reinstall
|
|
80
|
+
pytest
|
|
81
|
+
|
|
82
|
+
musllinux:
|
|
83
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
84
|
+
strategy:
|
|
85
|
+
matrix:
|
|
86
|
+
platform:
|
|
87
|
+
- runner: ubuntu-22.04
|
|
88
|
+
target: x86_64
|
|
89
|
+
- runner: ubuntu-22.04
|
|
90
|
+
target: x86
|
|
91
|
+
- runner: ubuntu-22.04
|
|
92
|
+
target: aarch64
|
|
93
|
+
- runner: ubuntu-22.04
|
|
94
|
+
target: armv7
|
|
95
|
+
steps:
|
|
96
|
+
- uses: actions/checkout@v5
|
|
97
|
+
- uses: actions/setup-python@v6
|
|
98
|
+
with:
|
|
99
|
+
python-version: 3.x
|
|
100
|
+
- name: Build wheels
|
|
101
|
+
uses: PyO3/maturin-action@v1
|
|
102
|
+
with:
|
|
103
|
+
target: ${{ matrix.platform.target }}
|
|
104
|
+
args: --release --out dist --find-interpreter
|
|
105
|
+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
106
|
+
manylinux: musllinux_1_2
|
|
107
|
+
- name: Upload wheels
|
|
108
|
+
uses: actions/upload-artifact@v4
|
|
109
|
+
with:
|
|
110
|
+
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
111
|
+
path: dist
|
|
112
|
+
- name: pytest
|
|
113
|
+
if: ${{ startsWith(matrix.platform.target, 'x86_64') }}
|
|
114
|
+
uses: addnab/docker-run-action@v3
|
|
115
|
+
with:
|
|
116
|
+
image: alpine:latest
|
|
117
|
+
options: -v ${{ github.workspace }}:/io -w /io
|
|
118
|
+
run: |
|
|
119
|
+
set -e
|
|
120
|
+
apk add py3-pip py3-virtualenv
|
|
121
|
+
python3 -m virtualenv .venv
|
|
122
|
+
source .venv/bin/activate
|
|
123
|
+
pip install cotengrust --no-index --find-links dist --force-reinstall
|
|
124
|
+
pip install pytest
|
|
125
|
+
pytest
|
|
126
|
+
- name: pytest
|
|
127
|
+
if: ${{ !startsWith(matrix.platform.target, 'x86') }}
|
|
128
|
+
uses: uraimo/run-on-arch-action@v3
|
|
129
|
+
with:
|
|
130
|
+
arch: ${{ matrix.platform.target }}
|
|
131
|
+
distro: alpine_latest
|
|
132
|
+
githubToken: ${{ github.token }}
|
|
133
|
+
install: |
|
|
134
|
+
apk add py3-virtualenv
|
|
135
|
+
run: |
|
|
136
|
+
set -e
|
|
137
|
+
python3 -m virtualenv .venv
|
|
138
|
+
source .venv/bin/activate
|
|
139
|
+
pip install pytest
|
|
140
|
+
pip install cotengrust --find-links dist --force-reinstall
|
|
141
|
+
pytest
|
|
142
|
+
|
|
143
|
+
windows:
|
|
144
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
145
|
+
strategy:
|
|
146
|
+
matrix:
|
|
147
|
+
platform:
|
|
148
|
+
- runner: windows-latest
|
|
149
|
+
target: x64
|
|
150
|
+
- runner: windows-latest
|
|
151
|
+
target: x86
|
|
152
|
+
steps:
|
|
153
|
+
- uses: actions/checkout@v5
|
|
154
|
+
- uses: actions/setup-python@v6
|
|
155
|
+
with:
|
|
156
|
+
python-version: 3.x
|
|
157
|
+
architecture: ${{ matrix.platform.target }}
|
|
158
|
+
- name: Build wheels
|
|
159
|
+
uses: PyO3/maturin-action@v1
|
|
160
|
+
with:
|
|
161
|
+
target: ${{ matrix.platform.target }}
|
|
162
|
+
args: --release --out dist --find-interpreter
|
|
163
|
+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
164
|
+
- name: Upload wheels
|
|
165
|
+
uses: actions/upload-artifact@v4
|
|
166
|
+
with:
|
|
167
|
+
name: wheels-windows-${{ matrix.platform.target }}
|
|
168
|
+
path: dist
|
|
169
|
+
- name: pytest
|
|
170
|
+
if: ${{ !startsWith(matrix.platform.target, 'aarch64') }}
|
|
171
|
+
shell: bash
|
|
172
|
+
run: |
|
|
173
|
+
set -e
|
|
174
|
+
python3 -m venv .venv
|
|
175
|
+
source .venv/Scripts/activate
|
|
176
|
+
pip install cotengrust --find-links dist --force-reinstall
|
|
177
|
+
pip install pytest
|
|
178
|
+
pytest
|
|
179
|
+
|
|
180
|
+
macos:
|
|
181
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
182
|
+
strategy:
|
|
183
|
+
matrix:
|
|
184
|
+
platform:
|
|
185
|
+
- runner: macos-13
|
|
186
|
+
target: x86_64
|
|
187
|
+
- runner: macos-14
|
|
188
|
+
target: aarch64
|
|
189
|
+
steps:
|
|
190
|
+
- uses: actions/checkout@v5
|
|
191
|
+
- uses: actions/setup-python@v6
|
|
192
|
+
with:
|
|
193
|
+
python-version: 3.x
|
|
194
|
+
- name: Build wheels
|
|
195
|
+
uses: PyO3/maturin-action@v1
|
|
196
|
+
with:
|
|
197
|
+
target: ${{ matrix.platform.target }}
|
|
198
|
+
args: --release --out dist --find-interpreter
|
|
199
|
+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
200
|
+
- name: Upload wheels
|
|
201
|
+
uses: actions/upload-artifact@v4
|
|
202
|
+
with:
|
|
203
|
+
name: wheels-macos-${{ matrix.platform.target }}
|
|
204
|
+
path: dist
|
|
205
|
+
- name: pytest
|
|
206
|
+
run: |
|
|
207
|
+
set -e
|
|
208
|
+
python3 -m venv .venv
|
|
209
|
+
source .venv/bin/activate
|
|
210
|
+
pip install cotengrust --find-links dist --force-reinstall
|
|
211
|
+
pip install pytest
|
|
212
|
+
pytest
|
|
213
|
+
|
|
214
|
+
sdist:
|
|
215
|
+
runs-on: ubuntu-latest
|
|
216
|
+
steps:
|
|
217
|
+
- uses: actions/checkout@v5
|
|
218
|
+
- name: Build sdist
|
|
219
|
+
uses: PyO3/maturin-action@v1
|
|
220
|
+
with:
|
|
221
|
+
command: sdist
|
|
222
|
+
args: --out dist
|
|
223
|
+
- name: Upload sdist
|
|
224
|
+
uses: actions/upload-artifact@v4
|
|
225
|
+
with:
|
|
226
|
+
name: wheels-sdist
|
|
227
|
+
path: dist
|
|
228
|
+
|
|
229
|
+
release:
|
|
230
|
+
name: Release
|
|
231
|
+
runs-on: ubuntu-latest
|
|
232
|
+
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
|
|
233
|
+
needs: [linux, musllinux, windows, macos, sdist]
|
|
234
|
+
permissions:
|
|
235
|
+
# Use to sign the release artifacts
|
|
236
|
+
id-token: write
|
|
237
|
+
# Used to upload release artifacts
|
|
238
|
+
contents: write
|
|
239
|
+
# Used to generate artifact attestation
|
|
240
|
+
attestations: write
|
|
241
|
+
steps:
|
|
242
|
+
- uses: actions/download-artifact@v5
|
|
243
|
+
- name: Generate artifact attestation
|
|
244
|
+
uses: actions/attest-build-provenance@v3
|
|
245
|
+
with:
|
|
246
|
+
subject-path: 'wheels-*/*'
|
|
247
|
+
- name: Publish to PyPI
|
|
248
|
+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
249
|
+
uses: PyO3/maturin-action@v1
|
|
250
|
+
env:
|
|
251
|
+
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
252
|
+
with:
|
|
253
|
+
command: upload
|
|
254
|
+
args: --non-interactive --skip-existing wheels-*/*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "autocfg"
|
|
@@ -10,24 +10,24 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "bit-set"
|
|
13
|
-
version = "0.
|
|
13
|
+
version = "0.8.0"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
15
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
16
16
|
dependencies = [
|
|
17
17
|
"bit-vec",
|
|
18
18
|
]
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "bit-vec"
|
|
22
|
-
version = "0.
|
|
22
|
+
version = "0.8.0"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "bitflags"
|
|
28
|
-
version = "
|
|
28
|
+
version = "2.9.0"
|
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
-
checksum = "
|
|
30
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
31
31
|
|
|
32
32
|
[[package]]
|
|
33
33
|
name = "cfg-if"
|
|
@@ -37,9 +37,10 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
37
37
|
|
|
38
38
|
[[package]]
|
|
39
39
|
name = "cotengrust"
|
|
40
|
-
version = "0.1.
|
|
40
|
+
version = "0.1.5"
|
|
41
41
|
dependencies = [
|
|
42
42
|
"bit-set",
|
|
43
|
+
"num-traits",
|
|
43
44
|
"ordered-float",
|
|
44
45
|
"pyo3",
|
|
45
46
|
"rand",
|
|
@@ -48,20 +49,21 @@ dependencies = [
|
|
|
48
49
|
|
|
49
50
|
[[package]]
|
|
50
51
|
name = "getrandom"
|
|
51
|
-
version = "0.
|
|
52
|
+
version = "0.3.1"
|
|
52
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
-
checksum = "
|
|
54
|
+
checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
|
|
54
55
|
dependencies = [
|
|
55
56
|
"cfg-if",
|
|
56
57
|
"libc",
|
|
57
58
|
"wasi",
|
|
59
|
+
"windows-targets",
|
|
58
60
|
]
|
|
59
61
|
|
|
60
62
|
[[package]]
|
|
61
63
|
name = "heck"
|
|
62
|
-
version = "0.
|
|
64
|
+
version = "0.5.0"
|
|
63
65
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
-
checksum = "
|
|
66
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
65
67
|
|
|
66
68
|
[[package]]
|
|
67
69
|
name = "indoc"
|
|
@@ -71,19 +73,9 @@ checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
|
|
|
71
73
|
|
|
72
74
|
[[package]]
|
|
73
75
|
name = "libc"
|
|
74
|
-
version = "0.2.
|
|
76
|
+
version = "0.2.170"
|
|
75
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
-
checksum = "
|
|
77
|
-
|
|
78
|
-
[[package]]
|
|
79
|
-
name = "lock_api"
|
|
80
|
-
version = "0.4.10"
|
|
81
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
|
83
|
-
dependencies = [
|
|
84
|
-
"autocfg",
|
|
85
|
-
"scopeguard",
|
|
86
|
-
]
|
|
78
|
+
checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
|
|
87
79
|
|
|
88
80
|
[[package]]
|
|
89
81
|
name = "memoffset"
|
|
@@ -105,42 +97,19 @@ dependencies = [
|
|
|
105
97
|
|
|
106
98
|
[[package]]
|
|
107
99
|
name = "once_cell"
|
|
108
|
-
version = "1.
|
|
100
|
+
version = "1.21.3"
|
|
109
101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
102
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
111
103
|
|
|
112
104
|
[[package]]
|
|
113
105
|
name = "ordered-float"
|
|
114
|
-
version = "
|
|
106
|
+
version = "5.1.0"
|
|
115
107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "
|
|
108
|
+
checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
|
|
117
109
|
dependencies = [
|
|
118
110
|
"num-traits",
|
|
119
111
|
]
|
|
120
112
|
|
|
121
|
-
[[package]]
|
|
122
|
-
name = "parking_lot"
|
|
123
|
-
version = "0.12.1"
|
|
124
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
-
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
126
|
-
dependencies = [
|
|
127
|
-
"lock_api",
|
|
128
|
-
"parking_lot_core",
|
|
129
|
-
]
|
|
130
|
-
|
|
131
|
-
[[package]]
|
|
132
|
-
name = "parking_lot_core"
|
|
133
|
-
version = "0.9.8"
|
|
134
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
-
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
|
136
|
-
dependencies = [
|
|
137
|
-
"cfg-if",
|
|
138
|
-
"libc",
|
|
139
|
-
"redox_syscall",
|
|
140
|
-
"smallvec",
|
|
141
|
-
"windows-targets",
|
|
142
|
-
]
|
|
143
|
-
|
|
144
113
|
[[package]]
|
|
145
114
|
name = "portable-atomic"
|
|
146
115
|
version = "1.6.0"
|
|
@@ -155,24 +124,23 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
|
155
124
|
|
|
156
125
|
[[package]]
|
|
157
126
|
name = "proc-macro2"
|
|
158
|
-
version = "1.0.
|
|
127
|
+
version = "1.0.86"
|
|
159
128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
129
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
161
130
|
dependencies = [
|
|
162
131
|
"unicode-ident",
|
|
163
132
|
]
|
|
164
133
|
|
|
165
134
|
[[package]]
|
|
166
135
|
name = "pyo3"
|
|
167
|
-
version = "0.
|
|
136
|
+
version = "0.26.0"
|
|
168
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
-
checksum = "
|
|
138
|
+
checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
|
|
170
139
|
dependencies = [
|
|
171
|
-
"cfg-if",
|
|
172
140
|
"indoc",
|
|
173
141
|
"libc",
|
|
174
142
|
"memoffset",
|
|
175
|
-
"
|
|
143
|
+
"once_cell",
|
|
176
144
|
"portable-atomic",
|
|
177
145
|
"pyo3-build-config",
|
|
178
146
|
"pyo3-ffi",
|
|
@@ -182,19 +150,18 @@ dependencies = [
|
|
|
182
150
|
|
|
183
151
|
[[package]]
|
|
184
152
|
name = "pyo3-build-config"
|
|
185
|
-
version = "0.
|
|
153
|
+
version = "0.26.0"
|
|
186
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
-
checksum = "
|
|
155
|
+
checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
|
|
188
156
|
dependencies = [
|
|
189
|
-
"once_cell",
|
|
190
157
|
"target-lexicon",
|
|
191
158
|
]
|
|
192
159
|
|
|
193
160
|
[[package]]
|
|
194
161
|
name = "pyo3-ffi"
|
|
195
|
-
version = "0.
|
|
162
|
+
version = "0.26.0"
|
|
196
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
164
|
+
checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
|
|
198
165
|
dependencies = [
|
|
199
166
|
"libc",
|
|
200
167
|
"pyo3-build-config",
|
|
@@ -202,9 +169,9 @@ dependencies = [
|
|
|
202
169
|
|
|
203
170
|
[[package]]
|
|
204
171
|
name = "pyo3-macros"
|
|
205
|
-
version = "0.
|
|
172
|
+
version = "0.26.0"
|
|
206
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
-
checksum = "
|
|
174
|
+
checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
|
|
208
175
|
dependencies = [
|
|
209
176
|
"proc-macro2",
|
|
210
177
|
"pyo3-macros-backend",
|
|
@@ -214,9 +181,9 @@ dependencies = [
|
|
|
214
181
|
|
|
215
182
|
[[package]]
|
|
216
183
|
name = "pyo3-macros-backend"
|
|
217
|
-
version = "0.
|
|
184
|
+
version = "0.26.0"
|
|
218
185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
186
|
+
checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
|
|
220
187
|
dependencies = [
|
|
221
188
|
"heck",
|
|
222
189
|
"proc-macro2",
|
|
@@ -227,29 +194,28 @@ dependencies = [
|
|
|
227
194
|
|
|
228
195
|
[[package]]
|
|
229
196
|
name = "quote"
|
|
230
|
-
version = "1.0.
|
|
197
|
+
version = "1.0.36"
|
|
231
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
-
checksum = "
|
|
199
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
233
200
|
dependencies = [
|
|
234
201
|
"proc-macro2",
|
|
235
202
|
]
|
|
236
203
|
|
|
237
204
|
[[package]]
|
|
238
205
|
name = "rand"
|
|
239
|
-
version = "0.
|
|
206
|
+
version = "0.9.2"
|
|
240
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
-
checksum = "
|
|
208
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
242
209
|
dependencies = [
|
|
243
|
-
"libc",
|
|
244
210
|
"rand_chacha",
|
|
245
211
|
"rand_core",
|
|
246
212
|
]
|
|
247
213
|
|
|
248
214
|
[[package]]
|
|
249
215
|
name = "rand_chacha"
|
|
250
|
-
version = "0.
|
|
216
|
+
version = "0.9.0"
|
|
251
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
-
checksum = "
|
|
218
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
253
219
|
dependencies = [
|
|
254
220
|
"ppv-lite86",
|
|
255
221
|
"rand_core",
|
|
@@ -257,45 +223,24 @@ dependencies = [
|
|
|
257
223
|
|
|
258
224
|
[[package]]
|
|
259
225
|
name = "rand_core"
|
|
260
|
-
version = "0.
|
|
226
|
+
version = "0.9.3"
|
|
261
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
-
checksum = "
|
|
228
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
263
229
|
dependencies = [
|
|
264
230
|
"getrandom",
|
|
265
231
|
]
|
|
266
232
|
|
|
267
|
-
[[package]]
|
|
268
|
-
name = "redox_syscall"
|
|
269
|
-
version = "0.3.5"
|
|
270
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
272
|
-
dependencies = [
|
|
273
|
-
"bitflags",
|
|
274
|
-
]
|
|
275
|
-
|
|
276
233
|
[[package]]
|
|
277
234
|
name = "rustc-hash"
|
|
278
|
-
version = "1.1
|
|
279
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
-
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
281
|
-
|
|
282
|
-
[[package]]
|
|
283
|
-
name = "scopeguard"
|
|
284
|
-
version = "1.2.0"
|
|
285
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
287
|
-
|
|
288
|
-
[[package]]
|
|
289
|
-
name = "smallvec"
|
|
290
|
-
version = "1.11.0"
|
|
235
|
+
version = "2.1.1"
|
|
291
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
-
checksum = "
|
|
237
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
293
238
|
|
|
294
239
|
[[package]]
|
|
295
240
|
name = "syn"
|
|
296
|
-
version = "2.0.
|
|
241
|
+
version = "2.0.74"
|
|
297
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
-
checksum = "
|
|
243
|
+
checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7"
|
|
299
244
|
dependencies = [
|
|
300
245
|
"proc-macro2",
|
|
301
246
|
"quote",
|
|
@@ -304,9 +249,9 @@ dependencies = [
|
|
|
304
249
|
|
|
305
250
|
[[package]]
|
|
306
251
|
name = "target-lexicon"
|
|
307
|
-
version = "0.
|
|
252
|
+
version = "0.13.2"
|
|
308
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
-
checksum = "
|
|
254
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
310
255
|
|
|
311
256
|
[[package]]
|
|
312
257
|
name = "unicode-ident"
|
|
@@ -322,19 +267,23 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
|
322
267
|
|
|
323
268
|
[[package]]
|
|
324
269
|
name = "wasi"
|
|
325
|
-
version = "0.
|
|
270
|
+
version = "0.13.3+wasi-0.2.2"
|
|
326
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
-
checksum = "
|
|
272
|
+
checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"wit-bindgen-rt",
|
|
275
|
+
]
|
|
328
276
|
|
|
329
277
|
[[package]]
|
|
330
278
|
name = "windows-targets"
|
|
331
|
-
version = "0.
|
|
279
|
+
version = "0.52.6"
|
|
332
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
281
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
334
282
|
dependencies = [
|
|
335
283
|
"windows_aarch64_gnullvm",
|
|
336
284
|
"windows_aarch64_msvc",
|
|
337
285
|
"windows_i686_gnu",
|
|
286
|
+
"windows_i686_gnullvm",
|
|
338
287
|
"windows_i686_msvc",
|
|
339
288
|
"windows_x86_64_gnu",
|
|
340
289
|
"windows_x86_64_gnullvm",
|
|
@@ -343,42 +292,57 @@ dependencies = [
|
|
|
343
292
|
|
|
344
293
|
[[package]]
|
|
345
294
|
name = "windows_aarch64_gnullvm"
|
|
346
|
-
version = "0.
|
|
295
|
+
version = "0.52.6"
|
|
347
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
297
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
349
298
|
|
|
350
299
|
[[package]]
|
|
351
300
|
name = "windows_aarch64_msvc"
|
|
352
|
-
version = "0.
|
|
301
|
+
version = "0.52.6"
|
|
353
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
303
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
355
304
|
|
|
356
305
|
[[package]]
|
|
357
306
|
name = "windows_i686_gnu"
|
|
358
|
-
version = "0.
|
|
307
|
+
version = "0.52.6"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "windows_i686_gnullvm"
|
|
313
|
+
version = "0.52.6"
|
|
359
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
-
checksum = "
|
|
315
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
361
316
|
|
|
362
317
|
[[package]]
|
|
363
318
|
name = "windows_i686_msvc"
|
|
364
|
-
version = "0.
|
|
319
|
+
version = "0.52.6"
|
|
365
320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
321
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
367
322
|
|
|
368
323
|
[[package]]
|
|
369
324
|
name = "windows_x86_64_gnu"
|
|
370
|
-
version = "0.
|
|
325
|
+
version = "0.52.6"
|
|
371
326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
327
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
373
328
|
|
|
374
329
|
[[package]]
|
|
375
330
|
name = "windows_x86_64_gnullvm"
|
|
376
|
-
version = "0.
|
|
331
|
+
version = "0.52.6"
|
|
377
332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
-
checksum = "
|
|
333
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
379
334
|
|
|
380
335
|
[[package]]
|
|
381
336
|
name = "windows_x86_64_msvc"
|
|
382
|
-
version = "0.
|
|
337
|
+
version = "0.52.6"
|
|
383
338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
-
checksum = "
|
|
339
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "wit-bindgen-rt"
|
|
343
|
+
version = "0.33.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"bitflags",
|
|
348
|
+
]
|