quillmark 0.1.20__tar.gz → 0.4.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.
- {quillmark-0.1.20 → quillmark-0.4.1}/Cargo.lock +498 -83
- {quillmark-0.1.20 → quillmark-0.4.1}/Cargo.toml +10 -6
- quillmark-0.4.1/PKG-INFO +215 -0
- quillmark-0.4.1/README.md +189 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark/Cargo.toml +6 -2
- {quillmark-0.1.20/quillmark-typst → quillmark-0.4.1/quillmark}/README.md +6 -1
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark/src/lib.rs +26 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark/src/orchestration.rs +56 -31
- quillmark-0.4.1/quillmark-acroform/Cargo.toml +23 -0
- quillmark-0.4.1/quillmark-acroform/README.md +35 -0
- quillmark-0.4.1/quillmark-acroform/src/lib.rs +272 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/Cargo.toml +1 -1
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/README.md +6 -1
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/backend.rs +12 -9
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/error.rs +9 -6
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/parse.rs +307 -29
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/quill.rs +54 -17
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/templating.rs +178 -9
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/Cargo.toml +1 -1
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/extended_metadata_demo.md +2 -2
- quillmark-0.4.1/quillmark-fixtures/resources/usaf_form_8/Quill.toml +5 -0
- quillmark-0.4.1/quillmark-fixtures/resources/usaf_form_8/form.pdf +0 -0
- quillmark-0.4.1/quillmark-fixtures/resources/usaf_form_8/usaf_form_8.md +97 -0
- quillmark-0.4.1/quillmark-python/.gitignore +67 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/Cargo.toml +3 -3
- quillmark-0.4.1/quillmark-python/IMPLEMENTATION_SUMMARY.md +180 -0
- quillmark-0.4.1/quillmark-python/README.md +189 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/examples/basic.py +9 -5
- quillmark-0.4.1/quillmark-python/examples/batch.py +85 -0
- quillmark-0.4.1/quillmark-python/examples/workflow_demo.py +136 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/src/types.rs +31 -0
- quillmark-0.4.1/quillmark-python/tests/test_api_requirements.py +183 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-typst/Cargo.toml +1 -1
- {quillmark-0.1.20/quillmark → quillmark-0.4.1/quillmark-typst}/README.md +6 -1
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-typst/src/compile.rs +1 -5
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-typst/src/error_mapping.rs +4 -4
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-typst/src/filters.rs +0 -2
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-typst/src/lib.rs +10 -8
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-typst/src/world.rs +35 -134
- quillmark-0.1.20/PKG-INFO +0 -119
- quillmark-0.1.20/README.md +0 -93
- quillmark-0.1.20/quillmark-python/.gitignore +0 -110
- quillmark-0.1.20/quillmark-python/README.md +0 -93
- quillmark-0.1.20/quillmark-python/examples/batch.py +0 -49
- {quillmark-0.1.20 → quillmark-0.4.1}/pyproject.toml +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/python/quillmark/__init__.py +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/python/quillmark/__init__.pyi +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/python/quillmark/py.typed +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/lib.rs +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/types.rs +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-core/src/value.rs +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/.npmignore +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/README.md +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/appreciated_letter/Quill.toml +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/appreciated_letter/appreciated_letter.md +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/appreciated_letter/glue.typ +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/frontmatter_demo.md +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/sample.md +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/taro/Quill.toml +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/taro/glue.typ +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/taro/taro.md +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/taro.png +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/.quillignore +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/Quill.toml +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/assets/dow_seal.png +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/glue.typ +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/.gitignore +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/LICENSE +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/Cinzel/Cinzel-Regular.ttf +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/Cinzel/LICENSE +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/CopperplateCC/CopperplateCC-Heavy.otf +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/CopperplateCC/LICENSE.md +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/NimbusRomanNo9L/GNU General Public License.txt +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/NimbusRomanNo9L/NimbusRomNo9L-Med.otf +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/NimbusRomanNo9L/NimbusRomNo9L-MedIta.otf +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/NimbusRomanNo9L/NimbusRomNo9L-Reg.otf +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/fonts/NimbusRomanNo9L/NimbusRomNo9L-RegIta.otf +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/src/lib.typ +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/src/utils.typ +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/packages/tonguetoquill-usaf-memo/typst.toml +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/resources/usaf_memo/usaf_memo.md +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-fixtures/src/lib.rs +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/python/quillmark/__init__.py +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/python/quillmark/__init__.pyi +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/python/quillmark/py.typed +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/src/enums.rs +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/src/errors.rs +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/src/lib.rs +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/tests/conftest.py +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/tests/test_engine.py +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/tests/test_parse.py +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/tests/test_quill.py +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/tests/test_render.py +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-python/uv.lock +0 -0
- {quillmark-0.1.20 → quillmark-0.4.1}/quillmark-typst/src/convert.rs +0 -0
@@ -2,12 +2,32 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 4
|
4
4
|
|
5
|
+
[[package]]
|
6
|
+
name = "acroform"
|
7
|
+
version = "0.1.3"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "de7f2f94dd867d55d799a2bae63e4bdce7ea6e1d40ea9e7ba1c07d977942b44d"
|
10
|
+
dependencies = [
|
11
|
+
"lopdf",
|
12
|
+
]
|
13
|
+
|
5
14
|
[[package]]
|
6
15
|
name = "adler2"
|
7
16
|
version = "2.0.1"
|
8
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
18
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
10
19
|
|
20
|
+
[[package]]
|
21
|
+
name = "aes"
|
22
|
+
version = "0.8.4"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
25
|
+
dependencies = [
|
26
|
+
"cfg-if",
|
27
|
+
"cipher",
|
28
|
+
"cpufeatures",
|
29
|
+
]
|
30
|
+
|
11
31
|
[[package]]
|
12
32
|
name = "aho-corasick"
|
13
33
|
version = "1.1.3"
|
@@ -17,6 +37,15 @@ dependencies = [
|
|
17
37
|
"memchr",
|
18
38
|
]
|
19
39
|
|
40
|
+
[[package]]
|
41
|
+
name = "android_system_properties"
|
42
|
+
version = "0.1.5"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
45
|
+
dependencies = [
|
46
|
+
"libc",
|
47
|
+
]
|
48
|
+
|
20
49
|
[[package]]
|
21
50
|
name = "anyhow"
|
22
51
|
version = "1.0.100"
|
@@ -129,6 +158,24 @@ dependencies = [
|
|
129
158
|
"serde",
|
130
159
|
]
|
131
160
|
|
161
|
+
[[package]]
|
162
|
+
name = "block-buffer"
|
163
|
+
version = "0.10.4"
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
165
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
166
|
+
dependencies = [
|
167
|
+
"generic-array",
|
168
|
+
]
|
169
|
+
|
170
|
+
[[package]]
|
171
|
+
name = "block-padding"
|
172
|
+
version = "0.3.3"
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
174
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
175
|
+
dependencies = [
|
176
|
+
"generic-array",
|
177
|
+
]
|
178
|
+
|
132
179
|
[[package]]
|
133
180
|
name = "bumpalo"
|
134
181
|
version = "3.19.0"
|
@@ -141,6 +188,12 @@ version = "1.2.1"
|
|
141
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
142
189
|
checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
|
143
190
|
|
191
|
+
[[package]]
|
192
|
+
name = "bytecount"
|
193
|
+
version = "0.6.9"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
196
|
+
|
144
197
|
[[package]]
|
145
198
|
name = "bytemuck"
|
146
199
|
version = "1.24.0"
|
@@ -167,11 +220,20 @@ version = "0.1.0"
|
|
167
220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
168
221
|
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
169
222
|
|
223
|
+
[[package]]
|
224
|
+
name = "cbc"
|
225
|
+
version = "0.1.2"
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
227
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
228
|
+
dependencies = [
|
229
|
+
"cipher",
|
230
|
+
]
|
231
|
+
|
170
232
|
[[package]]
|
171
233
|
name = "cc"
|
172
|
-
version = "1.2.
|
234
|
+
version = "1.2.41"
|
173
235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
174
|
-
checksum = "
|
236
|
+
checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
|
175
237
|
dependencies = [
|
176
238
|
"find-msvc-tools",
|
177
239
|
"shlex",
|
@@ -179,9 +241,9 @@ dependencies = [
|
|
179
241
|
|
180
242
|
[[package]]
|
181
243
|
name = "cfg-if"
|
182
|
-
version = "1.0.
|
244
|
+
version = "1.0.4"
|
183
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
-
checksum = "
|
246
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
185
247
|
|
186
248
|
[[package]]
|
187
249
|
name = "chinese-number"
|
@@ -201,6 +263,17 @@ version = "1.1.3"
|
|
201
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
202
264
|
checksum = "7588475145507237ded760e52bf2f1085495245502033756d28ea72ade0e498b"
|
203
265
|
|
266
|
+
[[package]]
|
267
|
+
name = "chrono"
|
268
|
+
version = "0.4.42"
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
270
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
271
|
+
dependencies = [
|
272
|
+
"iana-time-zone",
|
273
|
+
"num-traits",
|
274
|
+
"windows-link",
|
275
|
+
]
|
276
|
+
|
204
277
|
[[package]]
|
205
278
|
name = "ciborium"
|
206
279
|
version = "0.2.2"
|
@@ -228,6 +301,16 @@ dependencies = [
|
|
228
301
|
"half",
|
229
302
|
]
|
230
303
|
|
304
|
+
[[package]]
|
305
|
+
name = "cipher"
|
306
|
+
version = "0.4.4"
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
309
|
+
dependencies = [
|
310
|
+
"crypto-common",
|
311
|
+
"inout",
|
312
|
+
]
|
313
|
+
|
231
314
|
[[package]]
|
232
315
|
name = "citationberg"
|
233
316
|
version = "0.5.0"
|
@@ -317,6 +400,15 @@ dependencies = [
|
|
317
400
|
"libm",
|
318
401
|
]
|
319
402
|
|
403
|
+
[[package]]
|
404
|
+
name = "cpufeatures"
|
405
|
+
version = "0.2.17"
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
408
|
+
dependencies = [
|
409
|
+
"libc",
|
410
|
+
]
|
411
|
+
|
320
412
|
[[package]]
|
321
413
|
name = "crc32fast"
|
322
414
|
version = "1.5.0"
|
@@ -357,6 +449,16 @@ version = "0.2.4"
|
|
357
449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
358
450
|
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
359
451
|
|
452
|
+
[[package]]
|
453
|
+
name = "crypto-common"
|
454
|
+
version = "0.1.6"
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
456
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
457
|
+
dependencies = [
|
458
|
+
"generic-array",
|
459
|
+
"typenum",
|
460
|
+
]
|
461
|
+
|
360
462
|
[[package]]
|
361
463
|
name = "csv"
|
362
464
|
version = "1.3.1"
|
@@ -393,6 +495,16 @@ dependencies = [
|
|
393
495
|
"powerfmt",
|
394
496
|
]
|
395
497
|
|
498
|
+
[[package]]
|
499
|
+
name = "digest"
|
500
|
+
version = "0.10.7"
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
502
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
503
|
+
dependencies = [
|
504
|
+
"block-buffer",
|
505
|
+
"crypto-common",
|
506
|
+
]
|
507
|
+
|
396
508
|
[[package]]
|
397
509
|
name = "dirs"
|
398
510
|
version = "6.0.0"
|
@@ -431,6 +543,15 @@ version = "1.2.1"
|
|
431
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
432
544
|
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
433
545
|
|
546
|
+
[[package]]
|
547
|
+
name = "ecb"
|
548
|
+
version = "0.1.2"
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
550
|
+
checksum = "1a8bfa975b1aec2145850fcaa1c6fe269a16578c44705a532ae3edc92b8881c7"
|
551
|
+
dependencies = [
|
552
|
+
"cipher",
|
553
|
+
]
|
554
|
+
|
434
555
|
[[package]]
|
435
556
|
name = "ecow"
|
436
557
|
version = "0.2.6"
|
@@ -458,6 +579,15 @@ version = "0.6.1"
|
|
458
579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
580
|
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
460
581
|
|
582
|
+
[[package]]
|
583
|
+
name = "encoding_rs"
|
584
|
+
version = "0.8.35"
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
587
|
+
dependencies = [
|
588
|
+
"cfg-if",
|
589
|
+
]
|
590
|
+
|
461
591
|
[[package]]
|
462
592
|
name = "enum-ordinalize"
|
463
593
|
version = "4.3.0"
|
@@ -559,9 +689,9 @@ dependencies = [
|
|
559
689
|
|
560
690
|
[[package]]
|
561
691
|
name = "find-msvc-tools"
|
562
|
-
version = "0.1.
|
692
|
+
version = "0.1.4"
|
563
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
-
checksum = "
|
694
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
565
695
|
|
566
696
|
[[package]]
|
567
697
|
name = "flate2"
|
@@ -620,7 +750,7 @@ dependencies = [
|
|
620
750
|
"memmap2",
|
621
751
|
"slotmap",
|
622
752
|
"tinyvec",
|
623
|
-
"ttf-parser",
|
753
|
+
"ttf-parser 0.24.1",
|
624
754
|
]
|
625
755
|
|
626
756
|
[[package]]
|
@@ -647,6 +777,16 @@ dependencies = [
|
|
647
777
|
"percent-encoding",
|
648
778
|
]
|
649
779
|
|
780
|
+
[[package]]
|
781
|
+
name = "generic-array"
|
782
|
+
version = "0.14.9"
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
784
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
785
|
+
dependencies = [
|
786
|
+
"typenum",
|
787
|
+
"version_check",
|
788
|
+
]
|
789
|
+
|
650
790
|
[[package]]
|
651
791
|
name = "getopts"
|
652
792
|
version = "0.2.24"
|
@@ -663,22 +803,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
803
|
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
664
804
|
dependencies = [
|
665
805
|
"cfg-if",
|
666
|
-
"js-sys",
|
667
806
|
"libc",
|
668
|
-
"wasi
|
669
|
-
"wasm-bindgen",
|
807
|
+
"wasi",
|
670
808
|
]
|
671
809
|
|
672
810
|
[[package]]
|
673
811
|
name = "getrandom"
|
674
|
-
version = "0.3.
|
812
|
+
version = "0.3.4"
|
675
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
676
|
-
checksum = "
|
814
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
677
815
|
dependencies = [
|
678
816
|
"cfg-if",
|
817
|
+
"js-sys",
|
679
818
|
"libc",
|
680
819
|
"r-efi",
|
681
|
-
"
|
820
|
+
"wasip2",
|
821
|
+
"wasm-bindgen",
|
682
822
|
]
|
683
823
|
|
684
824
|
[[package]]
|
@@ -699,9 +839,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
699
839
|
|
700
840
|
[[package]]
|
701
841
|
name = "half"
|
702
|
-
version = "2.7.
|
842
|
+
version = "2.7.1"
|
703
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
704
|
-
checksum = "
|
844
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
705
845
|
dependencies = [
|
706
846
|
"cfg-if",
|
707
847
|
"crunchy",
|
@@ -756,6 +896,30 @@ version = "0.1.6"
|
|
756
896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
757
897
|
checksum = "74e25026c579b170c59f8d3ddfc523d7dab0abe079f09eb8edaebd2417044f60"
|
758
898
|
|
899
|
+
[[package]]
|
900
|
+
name = "iana-time-zone"
|
901
|
+
version = "0.1.64"
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
904
|
+
dependencies = [
|
905
|
+
"android_system_properties",
|
906
|
+
"core-foundation-sys",
|
907
|
+
"iana-time-zone-haiku",
|
908
|
+
"js-sys",
|
909
|
+
"log",
|
910
|
+
"wasm-bindgen",
|
911
|
+
"windows-core",
|
912
|
+
]
|
913
|
+
|
914
|
+
[[package]]
|
915
|
+
name = "iana-time-zone-haiku"
|
916
|
+
version = "0.1.2"
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
918
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
919
|
+
dependencies = [
|
920
|
+
"cc",
|
921
|
+
]
|
922
|
+
|
759
923
|
[[package]]
|
760
924
|
name = "icu_collections"
|
761
925
|
version = "1.5.0"
|
@@ -1068,12 +1232,63 @@ version = "2.0.6"
|
|
1068
1232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1069
1233
|
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
1070
1234
|
|
1235
|
+
[[package]]
|
1236
|
+
name = "inout"
|
1237
|
+
version = "0.1.4"
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1239
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
1240
|
+
dependencies = [
|
1241
|
+
"block-padding",
|
1242
|
+
"generic-array",
|
1243
|
+
]
|
1244
|
+
|
1071
1245
|
[[package]]
|
1072
1246
|
name = "itoa"
|
1073
1247
|
version = "1.0.15"
|
1074
1248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1075
1249
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1076
1250
|
|
1251
|
+
[[package]]
|
1252
|
+
name = "jiff"
|
1253
|
+
version = "0.2.15"
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1255
|
+
checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
|
1256
|
+
dependencies = [
|
1257
|
+
"jiff-static",
|
1258
|
+
"jiff-tzdb-platform",
|
1259
|
+
"log",
|
1260
|
+
"portable-atomic",
|
1261
|
+
"portable-atomic-util",
|
1262
|
+
"serde",
|
1263
|
+
"windows-sys 0.59.0",
|
1264
|
+
]
|
1265
|
+
|
1266
|
+
[[package]]
|
1267
|
+
name = "jiff-static"
|
1268
|
+
version = "0.2.15"
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1270
|
+
checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
|
1271
|
+
dependencies = [
|
1272
|
+
"proc-macro2",
|
1273
|
+
"quote",
|
1274
|
+
"syn",
|
1275
|
+
]
|
1276
|
+
|
1277
|
+
[[package]]
|
1278
|
+
name = "jiff-tzdb"
|
1279
|
+
version = "0.1.4"
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1281
|
+
checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524"
|
1282
|
+
|
1283
|
+
[[package]]
|
1284
|
+
name = "jiff-tzdb-platform"
|
1285
|
+
version = "0.1.3"
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1287
|
+
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
|
1288
|
+
dependencies = [
|
1289
|
+
"jiff-tzdb",
|
1290
|
+
]
|
1291
|
+
|
1077
1292
|
[[package]]
|
1078
1293
|
name = "js-sys"
|
1079
1294
|
version = "0.3.81"
|
@@ -1123,9 +1338,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1123
1338
|
|
1124
1339
|
[[package]]
|
1125
1340
|
name = "libc"
|
1126
|
-
version = "0.2.
|
1341
|
+
version = "0.2.177"
|
1127
1342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
-
checksum = "
|
1343
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
1129
1344
|
|
1130
1345
|
[[package]]
|
1131
1346
|
name = "libm"
|
@@ -1162,8 +1377,8 @@ version = "0.9.1"
|
|
1162
1377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1163
1378
|
checksum = "636860251af8963cc40f6b4baadee105f02e21b28131d76eba8e40ce84ab8064"
|
1164
1379
|
dependencies = [
|
1165
|
-
"rand",
|
1166
|
-
"rand_chacha",
|
1380
|
+
"rand 0.8.5",
|
1381
|
+
"rand_chacha 0.3.1",
|
1167
1382
|
]
|
1168
1383
|
|
1169
1384
|
[[package]]
|
@@ -1196,6 +1411,48 @@ version = "0.4.28"
|
|
1196
1411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
1412
|
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
1198
1413
|
|
1414
|
+
[[package]]
|
1415
|
+
name = "lopdf"
|
1416
|
+
version = "0.38.0"
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1418
|
+
checksum = "c7184fdea2bc3cd272a1acec4030c321a8f9875e877b3f92a53f2f6033fdc289"
|
1419
|
+
dependencies = [
|
1420
|
+
"aes",
|
1421
|
+
"bitflags 2.9.4",
|
1422
|
+
"cbc",
|
1423
|
+
"chrono",
|
1424
|
+
"ecb",
|
1425
|
+
"encoding_rs",
|
1426
|
+
"flate2",
|
1427
|
+
"getrandom 0.3.4",
|
1428
|
+
"indexmap",
|
1429
|
+
"itoa",
|
1430
|
+
"jiff",
|
1431
|
+
"log",
|
1432
|
+
"md-5",
|
1433
|
+
"nom",
|
1434
|
+
"nom_locate",
|
1435
|
+
"rand 0.9.2",
|
1436
|
+
"rangemap",
|
1437
|
+
"rayon",
|
1438
|
+
"sha2",
|
1439
|
+
"stringprep",
|
1440
|
+
"thiserror 2.0.17",
|
1441
|
+
"time",
|
1442
|
+
"ttf-parser 0.25.1",
|
1443
|
+
"weezl",
|
1444
|
+
]
|
1445
|
+
|
1446
|
+
[[package]]
|
1447
|
+
name = "md-5"
|
1448
|
+
version = "0.10.6"
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
1451
|
+
dependencies = [
|
1452
|
+
"cfg-if",
|
1453
|
+
"digest",
|
1454
|
+
]
|
1455
|
+
|
1199
1456
|
[[package]]
|
1200
1457
|
name = "memchr"
|
1201
1458
|
version = "2.7.6"
|
@@ -1251,9 +1508,9 @@ dependencies = [
|
|
1251
1508
|
|
1252
1509
|
[[package]]
|
1253
1510
|
name = "moxcms"
|
1254
|
-
version = "0.7.
|
1511
|
+
version = "0.7.7"
|
1255
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1256
|
-
checksum = "
|
1513
|
+
checksum = "c588e11a3082784af229e23e8e4ecf5bcc6fbe4f69101e0421ce8d79da7f0b40"
|
1257
1514
|
dependencies = [
|
1258
1515
|
"num-traits",
|
1259
1516
|
"pxfm",
|
@@ -1288,6 +1545,26 @@ dependencies = [
|
|
1288
1545
|
"tempfile",
|
1289
1546
|
]
|
1290
1547
|
|
1548
|
+
[[package]]
|
1549
|
+
name = "nom"
|
1550
|
+
version = "8.0.0"
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1552
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
1553
|
+
dependencies = [
|
1554
|
+
"memchr",
|
1555
|
+
]
|
1556
|
+
|
1557
|
+
[[package]]
|
1558
|
+
name = "nom_locate"
|
1559
|
+
version = "5.0.0"
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1561
|
+
checksum = "0b577e2d69827c4740cba2b52efaad1c4cc7c73042860b199710b3575c68438d"
|
1562
|
+
dependencies = [
|
1563
|
+
"bytecount",
|
1564
|
+
"memchr",
|
1565
|
+
"nom",
|
1566
|
+
]
|
1567
|
+
|
1291
1568
|
[[package]]
|
1292
1569
|
name = "num-bigint"
|
1293
1570
|
version = "0.4.6"
|
@@ -1337,9 +1614,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1337
1614
|
|
1338
1615
|
[[package]]
|
1339
1616
|
name = "openssl"
|
1340
|
-
version = "0.10.
|
1617
|
+
version = "0.10.74"
|
1341
1618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1342
|
-
checksum = "
|
1619
|
+
checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654"
|
1343
1620
|
dependencies = [
|
1344
1621
|
"bitflags 2.9.4",
|
1345
1622
|
"cfg-if",
|
@@ -1369,9 +1646,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1369
1646
|
|
1370
1647
|
[[package]]
|
1371
1648
|
name = "openssl-sys"
|
1372
|
-
version = "0.9.
|
1649
|
+
version = "0.9.110"
|
1373
1650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
-
checksum = "
|
1651
|
+
checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2"
|
1375
1652
|
dependencies = [
|
1376
1653
|
"cc",
|
1377
1654
|
"libc",
|
@@ -1473,7 +1750,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
1750
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
1474
1751
|
dependencies = [
|
1475
1752
|
"phf_shared",
|
1476
|
-
"rand",
|
1753
|
+
"rand 0.8.5",
|
1477
1754
|
]
|
1478
1755
|
|
1479
1756
|
[[package]]
|
@@ -1555,6 +1832,15 @@ version = "1.11.1"
|
|
1555
1832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1556
1833
|
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
1557
1834
|
|
1835
|
+
[[package]]
|
1836
|
+
name = "portable-atomic-util"
|
1837
|
+
version = "0.2.4"
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1839
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
1840
|
+
dependencies = [
|
1841
|
+
"portable-atomic",
|
1842
|
+
]
|
1843
|
+
|
1558
1844
|
[[package]]
|
1559
1845
|
name = "postcard"
|
1560
1846
|
version = "1.1.3"
|
@@ -1611,8 +1897,8 @@ dependencies = [
|
|
1611
1897
|
"bitflags 2.9.4",
|
1612
1898
|
"lazy_static",
|
1613
1899
|
"num-traits",
|
1614
|
-
"rand",
|
1615
|
-
"rand_chacha",
|
1900
|
+
"rand 0.8.5",
|
1901
|
+
"rand_chacha 0.3.1",
|
1616
1902
|
"rand_xorshift",
|
1617
1903
|
"regex-syntax",
|
1618
1904
|
"rusty-fork",
|
@@ -1650,9 +1936,9 @@ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
|
|
1650
1936
|
|
1651
1937
|
[[package]]
|
1652
1938
|
name = "pxfm"
|
1653
|
-
version = "0.1.
|
1939
|
+
version = "0.1.25"
|
1654
1940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1655
|
-
checksum = "
|
1941
|
+
checksum = "a3cbdf373972bf78df4d3b518d07003938e2c7d1fb5891e55f9cb6df57009d84"
|
1656
1942
|
dependencies = [
|
1657
1943
|
"num-traits",
|
1658
1944
|
]
|
@@ -1757,21 +2043,37 @@ dependencies = [
|
|
1757
2043
|
|
1758
2044
|
[[package]]
|
1759
2045
|
name = "quillmark"
|
1760
|
-
version = "0.1
|
2046
|
+
version = "0.4.1"
|
1761
2047
|
dependencies = [
|
2048
|
+
"acroform",
|
1762
2049
|
"anyhow",
|
2050
|
+
"quillmark-acroform",
|
1763
2051
|
"quillmark-core",
|
1764
2052
|
"quillmark-fixtures",
|
1765
2053
|
"quillmark-typst",
|
1766
2054
|
"serde",
|
2055
|
+
"serde_json",
|
1767
2056
|
"serde_yaml",
|
1768
2057
|
"tempfile",
|
1769
2058
|
"thiserror 2.0.17",
|
1770
2059
|
]
|
1771
2060
|
|
2061
|
+
[[package]]
|
2062
|
+
name = "quillmark-acroform"
|
2063
|
+
version = "0.4.1"
|
2064
|
+
dependencies = [
|
2065
|
+
"acroform",
|
2066
|
+
"minijinja",
|
2067
|
+
"quillmark-core",
|
2068
|
+
"quillmark-fixtures",
|
2069
|
+
"serde_json",
|
2070
|
+
"tempfile",
|
2071
|
+
"thiserror 2.0.17",
|
2072
|
+
]
|
2073
|
+
|
1772
2074
|
[[package]]
|
1773
2075
|
name = "quillmark-core"
|
1774
|
-
version = "0.1
|
2076
|
+
version = "0.4.1"
|
1775
2077
|
dependencies = [
|
1776
2078
|
"anyhow",
|
1777
2079
|
"glob",
|
@@ -1781,12 +2083,12 @@ dependencies = [
|
|
1781
2083
|
"serde_yaml",
|
1782
2084
|
"tempfile",
|
1783
2085
|
"thiserror 2.0.17",
|
1784
|
-
"toml 0.9.
|
2086
|
+
"toml 0.9.8",
|
1785
2087
|
]
|
1786
2088
|
|
1787
2089
|
[[package]]
|
1788
2090
|
name = "quillmark-fixtures"
|
1789
|
-
version = "0.1
|
2091
|
+
version = "0.4.1"
|
1790
2092
|
dependencies = [
|
1791
2093
|
"quillmark",
|
1792
2094
|
"quillmark-typst",
|
@@ -1794,7 +2096,7 @@ dependencies = [
|
|
1794
2096
|
|
1795
2097
|
[[package]]
|
1796
2098
|
name = "quillmark-fuzz"
|
1797
|
-
version = "0.1
|
2099
|
+
version = "0.4.1"
|
1798
2100
|
dependencies = [
|
1799
2101
|
"proptest",
|
1800
2102
|
"quillmark-core",
|
@@ -1803,7 +2105,7 @@ dependencies = [
|
|
1803
2105
|
|
1804
2106
|
[[package]]
|
1805
2107
|
name = "quillmark-python"
|
1806
|
-
version = "0.1
|
2108
|
+
version = "0.4.1"
|
1807
2109
|
dependencies = [
|
1808
2110
|
"anyhow",
|
1809
2111
|
"pyo3",
|
@@ -1814,7 +2116,7 @@ dependencies = [
|
|
1814
2116
|
|
1815
2117
|
[[package]]
|
1816
2118
|
name = "quillmark-typst"
|
1817
|
-
version = "0.1
|
2119
|
+
version = "0.4.1"
|
1818
2120
|
dependencies = [
|
1819
2121
|
"anyhow",
|
1820
2122
|
"dirs",
|
@@ -1826,7 +2128,7 @@ dependencies = [
|
|
1826
2128
|
"tempfile",
|
1827
2129
|
"thiserror 2.0.17",
|
1828
2130
|
"time",
|
1829
|
-
"toml 0.9.
|
2131
|
+
"toml 0.9.8",
|
1830
2132
|
"typst",
|
1831
2133
|
"typst-kit",
|
1832
2134
|
"typst-pdf",
|
@@ -1836,10 +2138,10 @@ dependencies = [
|
|
1836
2138
|
|
1837
2139
|
[[package]]
|
1838
2140
|
name = "quillmark-wasm"
|
1839
|
-
version = "0.1
|
2141
|
+
version = "0.4.1"
|
1840
2142
|
dependencies = [
|
1841
2143
|
"console_error_panic_hook",
|
1842
|
-
"getrandom 0.
|
2144
|
+
"getrandom 0.3.4",
|
1843
2145
|
"js-sys",
|
1844
2146
|
"quillmark",
|
1845
2147
|
"quillmark-core",
|
@@ -1848,7 +2150,7 @@ dependencies = [
|
|
1848
2150
|
"serde-wasm-bindgen",
|
1849
2151
|
"serde_json",
|
1850
2152
|
"serde_yaml",
|
1851
|
-
"toml 0.9.
|
2153
|
+
"toml 0.9.8",
|
1852
2154
|
"wasm-bindgen",
|
1853
2155
|
"wasm-bindgen-test",
|
1854
2156
|
"web-sys",
|
@@ -1876,8 +2178,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
2178
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1877
2179
|
dependencies = [
|
1878
2180
|
"libc",
|
1879
|
-
"rand_chacha",
|
1880
|
-
"rand_core",
|
2181
|
+
"rand_chacha 0.3.1",
|
2182
|
+
"rand_core 0.6.4",
|
2183
|
+
]
|
2184
|
+
|
2185
|
+
[[package]]
|
2186
|
+
name = "rand"
|
2187
|
+
version = "0.9.2"
|
2188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2189
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
2190
|
+
dependencies = [
|
2191
|
+
"rand_chacha 0.9.0",
|
2192
|
+
"rand_core 0.9.3",
|
1881
2193
|
]
|
1882
2194
|
|
1883
2195
|
[[package]]
|
@@ -1887,7 +2199,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
2199
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1888
2200
|
dependencies = [
|
1889
2201
|
"ppv-lite86",
|
1890
|
-
"rand_core",
|
2202
|
+
"rand_core 0.6.4",
|
2203
|
+
]
|
2204
|
+
|
2205
|
+
[[package]]
|
2206
|
+
name = "rand_chacha"
|
2207
|
+
version = "0.9.0"
|
2208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2209
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
2210
|
+
dependencies = [
|
2211
|
+
"ppv-lite86",
|
2212
|
+
"rand_core 0.9.3",
|
1891
2213
|
]
|
1892
2214
|
|
1893
2215
|
[[package]]
|
@@ -1899,15 +2221,30 @@ dependencies = [
|
|
1899
2221
|
"getrandom 0.2.16",
|
1900
2222
|
]
|
1901
2223
|
|
2224
|
+
[[package]]
|
2225
|
+
name = "rand_core"
|
2226
|
+
version = "0.9.3"
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2228
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
2229
|
+
dependencies = [
|
2230
|
+
"getrandom 0.3.4",
|
2231
|
+
]
|
2232
|
+
|
1902
2233
|
[[package]]
|
1903
2234
|
name = "rand_xorshift"
|
1904
2235
|
version = "0.3.0"
|
1905
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1906
2237
|
checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
|
1907
2238
|
dependencies = [
|
1908
|
-
"rand_core",
|
2239
|
+
"rand_core 0.6.4",
|
1909
2240
|
]
|
1910
2241
|
|
2242
|
+
[[package]]
|
2243
|
+
name = "rangemap"
|
2244
|
+
version = "1.6.0"
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2246
|
+
checksum = "f93e7e49bb0bf967717f7bd674458b3d6b0c5f48ec7e3038166026a69fc22223"
|
2247
|
+
|
1911
2248
|
[[package]]
|
1912
2249
|
name = "rayon"
|
1913
2250
|
version = "1.11.0"
|
@@ -1960,9 +2297,9 @@ dependencies = [
|
|
1960
2297
|
|
1961
2298
|
[[package]]
|
1962
2299
|
name = "regex"
|
1963
|
-
version = "1.
|
2300
|
+
version = "1.12.2"
|
1964
2301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1965
|
-
checksum = "
|
2302
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
1966
2303
|
dependencies = [
|
1967
2304
|
"aho-corasick",
|
1968
2305
|
"memchr",
|
@@ -1972,9 +2309,9 @@ dependencies = [
|
|
1972
2309
|
|
1973
2310
|
[[package]]
|
1974
2311
|
name = "regex-automata"
|
1975
|
-
version = "0.4.
|
2312
|
+
version = "0.4.13"
|
1976
2313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1977
|
-
checksum = "
|
2314
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
1978
2315
|
dependencies = [
|
1979
2316
|
"aho-corasick",
|
1980
2317
|
"memchr",
|
@@ -1983,9 +2320,9 @@ dependencies = [
|
|
1983
2320
|
|
1984
2321
|
[[package]]
|
1985
2322
|
name = "regex-syntax"
|
1986
|
-
version = "0.8.
|
2323
|
+
version = "0.8.8"
|
1987
2324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1988
|
-
checksum = "
|
2325
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
1989
2326
|
|
1990
2327
|
[[package]]
|
1991
2328
|
name = "resvg"
|
@@ -2021,9 +2358,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
2021
2358
|
|
2022
2359
|
[[package]]
|
2023
2360
|
name = "rust_decimal"
|
2024
|
-
version = "1.
|
2361
|
+
version = "1.39.0"
|
2025
2362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026
|
-
checksum = "
|
2363
|
+
checksum = "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282"
|
2027
2364
|
dependencies = [
|
2028
2365
|
"arrayvec",
|
2029
2366
|
"num-traits",
|
@@ -2077,7 +2414,7 @@ dependencies = [
|
|
2077
2414
|
"core_maths",
|
2078
2415
|
"log",
|
2079
2416
|
"smallvec",
|
2080
|
-
"ttf-parser",
|
2417
|
+
"ttf-parser 0.24.1",
|
2081
2418
|
"unicode-bidi-mirroring",
|
2082
2419
|
"unicode-ccc",
|
2083
2420
|
"unicode-properties",
|
@@ -2202,9 +2539,9 @@ dependencies = [
|
|
2202
2539
|
|
2203
2540
|
[[package]]
|
2204
2541
|
name = "serde_spanned"
|
2205
|
-
version = "1.0.
|
2542
|
+
version = "1.0.3"
|
2206
2543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2207
|
-
checksum = "
|
2544
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
2208
2545
|
dependencies = [
|
2209
2546
|
"serde_core",
|
2210
2547
|
]
|
@@ -2222,6 +2559,17 @@ dependencies = [
|
|
2222
2559
|
"unsafe-libyaml",
|
2223
2560
|
]
|
2224
2561
|
|
2562
|
+
[[package]]
|
2563
|
+
name = "sha2"
|
2564
|
+
version = "0.10.9"
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2566
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
2567
|
+
dependencies = [
|
2568
|
+
"cfg-if",
|
2569
|
+
"cpufeatures",
|
2570
|
+
"digest",
|
2571
|
+
]
|
2572
|
+
|
2225
2573
|
[[package]]
|
2226
2574
|
name = "shlex"
|
2227
2575
|
version = "1.3.0"
|
@@ -2282,9 +2630,9 @@ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2282
2630
|
|
2283
2631
|
[[package]]
|
2284
2632
|
name = "stable_deref_trait"
|
2285
|
-
version = "1.2.
|
2633
|
+
version = "1.2.1"
|
2286
2634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
|
-
checksum = "
|
2635
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
2288
2636
|
|
2289
2637
|
[[package]]
|
2290
2638
|
name = "stacker"
|
@@ -2318,6 +2666,17 @@ dependencies = [
|
|
2318
2666
|
"serde",
|
2319
2667
|
]
|
2320
2668
|
|
2669
|
+
[[package]]
|
2670
|
+
name = "stringprep"
|
2671
|
+
version = "0.1.5"
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2673
|
+
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
|
2674
|
+
dependencies = [
|
2675
|
+
"unicode-bidi",
|
2676
|
+
"unicode-normalization",
|
2677
|
+
"unicode-properties",
|
2678
|
+
]
|
2679
|
+
|
2321
2680
|
[[package]]
|
2322
2681
|
name = "strum"
|
2323
2682
|
version = "0.26.3"
|
@@ -2368,7 +2727,7 @@ dependencies = [
|
|
2368
2727
|
"siphasher",
|
2369
2728
|
"subsetter",
|
2370
2729
|
"tiny-skia",
|
2371
|
-
"ttf-parser",
|
2730
|
+
"ttf-parser 0.24.1",
|
2372
2731
|
"usvg",
|
2373
2732
|
]
|
2374
2733
|
|
@@ -2449,7 +2808,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2449
2808
|
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
2450
2809
|
dependencies = [
|
2451
2810
|
"fastrand",
|
2452
|
-
"getrandom 0.3.
|
2811
|
+
"getrandom 0.3.4",
|
2453
2812
|
"once_cell",
|
2454
2813
|
"rustix",
|
2455
2814
|
"windows-sys 0.61.2",
|
@@ -2608,14 +2967,14 @@ dependencies = [
|
|
2608
2967
|
|
2609
2968
|
[[package]]
|
2610
2969
|
name = "toml"
|
2611
|
-
version = "0.9.
|
2970
|
+
version = "0.9.8"
|
2612
2971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2613
|
-
checksum = "
|
2972
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
2614
2973
|
dependencies = [
|
2615
2974
|
"indexmap",
|
2616
2975
|
"serde_core",
|
2617
|
-
"serde_spanned 1.0.
|
2618
|
-
"toml_datetime 0.7.
|
2976
|
+
"serde_spanned 1.0.3",
|
2977
|
+
"toml_datetime 0.7.3",
|
2619
2978
|
"toml_parser",
|
2620
2979
|
"toml_writer",
|
2621
2980
|
"winnow",
|
@@ -2632,9 +2991,9 @@ dependencies = [
|
|
2632
2991
|
|
2633
2992
|
[[package]]
|
2634
2993
|
name = "toml_datetime"
|
2635
|
-
version = "0.7.
|
2994
|
+
version = "0.7.3"
|
2636
2995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2637
|
-
checksum = "
|
2996
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
2638
2997
|
dependencies = [
|
2639
2998
|
"serde_core",
|
2640
2999
|
]
|
@@ -2655,9 +3014,9 @@ dependencies = [
|
|
2655
3014
|
|
2656
3015
|
[[package]]
|
2657
3016
|
name = "toml_parser"
|
2658
|
-
version = "1.0.
|
3017
|
+
version = "1.0.4"
|
2659
3018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2660
|
-
checksum = "
|
3019
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
2661
3020
|
dependencies = [
|
2662
3021
|
"winnow",
|
2663
3022
|
]
|
@@ -2670,9 +3029,9 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2670
3029
|
|
2671
3030
|
[[package]]
|
2672
3031
|
name = "toml_writer"
|
2673
|
-
version = "1.0.
|
3032
|
+
version = "1.0.4"
|
2674
3033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2675
|
-
checksum = "
|
3034
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
2676
3035
|
|
2677
3036
|
[[package]]
|
2678
3037
|
name = "ttf-parser"
|
@@ -2683,6 +3042,12 @@ dependencies = [
|
|
2683
3042
|
"core_maths",
|
2684
3043
|
]
|
2685
3044
|
|
3045
|
+
[[package]]
|
3046
|
+
name = "ttf-parser"
|
3047
|
+
version = "0.25.1"
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3049
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
3050
|
+
|
2686
3051
|
[[package]]
|
2687
3052
|
name = "two-face"
|
2688
3053
|
version = "0.4.4"
|
@@ -2700,6 +3065,12 @@ version = "2.0.2"
|
|
2700
3065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2701
3066
|
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
2702
3067
|
|
3068
|
+
[[package]]
|
3069
|
+
name = "typenum"
|
3070
|
+
version = "1.19.0"
|
3071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3072
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
3073
|
+
|
2703
3074
|
[[package]]
|
2704
3075
|
name = "typst"
|
2705
3076
|
version = "0.13.1"
|
@@ -2805,7 +3176,7 @@ dependencies = [
|
|
2805
3176
|
"kurbo 0.11.3",
|
2806
3177
|
"rustybuzz",
|
2807
3178
|
"smallvec",
|
2808
|
-
"ttf-parser",
|
3179
|
+
"ttf-parser 0.24.1",
|
2809
3180
|
"typst-assets",
|
2810
3181
|
"typst-library",
|
2811
3182
|
"typst-macros",
|
@@ -2863,7 +3234,7 @@ dependencies = [
|
|
2863
3234
|
"syntect",
|
2864
3235
|
"time",
|
2865
3236
|
"toml 0.8.23",
|
2866
|
-
"ttf-parser",
|
3237
|
+
"ttf-parser 0.24.1",
|
2867
3238
|
"two-face",
|
2868
3239
|
"typed-arena",
|
2869
3240
|
"typst-assets",
|
@@ -2909,7 +3280,7 @@ dependencies = [
|
|
2909
3280
|
"serde",
|
2910
3281
|
"subsetter",
|
2911
3282
|
"svg2pdf",
|
2912
|
-
"ttf-parser",
|
3283
|
+
"ttf-parser 0.24.1",
|
2913
3284
|
"typst-assets",
|
2914
3285
|
"typst-library",
|
2915
3286
|
"typst-macros",
|
@@ -2948,7 +3319,7 @@ dependencies = [
|
|
2948
3319
|
"ecow",
|
2949
3320
|
"flate2",
|
2950
3321
|
"image",
|
2951
|
-
"ttf-parser",
|
3322
|
+
"ttf-parser 0.24.1",
|
2952
3323
|
"typst-library",
|
2953
3324
|
"typst-macros",
|
2954
3325
|
"typst-timing",
|
@@ -3216,15 +3587,6 @@ version = "0.11.1+wasi-snapshot-preview1"
|
|
3216
3587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3217
3588
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
3218
3589
|
|
3219
|
-
[[package]]
|
3220
|
-
name = "wasi"
|
3221
|
-
version = "0.14.7+wasi-0.2.4"
|
3222
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3223
|
-
checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
|
3224
|
-
dependencies = [
|
3225
|
-
"wasip2",
|
3226
|
-
]
|
3227
|
-
|
3228
3590
|
[[package]]
|
3229
3591
|
name = "wasip2"
|
3230
3592
|
version = "1.0.1+wasi-0.2.4"
|
@@ -3409,12 +3771,65 @@ dependencies = [
|
|
3409
3771
|
"windows-sys 0.61.2",
|
3410
3772
|
]
|
3411
3773
|
|
3774
|
+
[[package]]
|
3775
|
+
name = "windows-core"
|
3776
|
+
version = "0.62.2"
|
3777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3778
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
3779
|
+
dependencies = [
|
3780
|
+
"windows-implement",
|
3781
|
+
"windows-interface",
|
3782
|
+
"windows-link",
|
3783
|
+
"windows-result",
|
3784
|
+
"windows-strings",
|
3785
|
+
]
|
3786
|
+
|
3787
|
+
[[package]]
|
3788
|
+
name = "windows-implement"
|
3789
|
+
version = "0.60.2"
|
3790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3791
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
3792
|
+
dependencies = [
|
3793
|
+
"proc-macro2",
|
3794
|
+
"quote",
|
3795
|
+
"syn",
|
3796
|
+
]
|
3797
|
+
|
3798
|
+
[[package]]
|
3799
|
+
name = "windows-interface"
|
3800
|
+
version = "0.59.3"
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3802
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
3803
|
+
dependencies = [
|
3804
|
+
"proc-macro2",
|
3805
|
+
"quote",
|
3806
|
+
"syn",
|
3807
|
+
]
|
3808
|
+
|
3412
3809
|
[[package]]
|
3413
3810
|
name = "windows-link"
|
3414
3811
|
version = "0.2.1"
|
3415
3812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3416
3813
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
3417
3814
|
|
3815
|
+
[[package]]
|
3816
|
+
name = "windows-result"
|
3817
|
+
version = "0.4.1"
|
3818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3819
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
3820
|
+
dependencies = [
|
3821
|
+
"windows-link",
|
3822
|
+
]
|
3823
|
+
|
3824
|
+
[[package]]
|
3825
|
+
name = "windows-strings"
|
3826
|
+
version = "0.5.1"
|
3827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3828
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
3829
|
+
dependencies = [
|
3830
|
+
"windows-link",
|
3831
|
+
]
|
3832
|
+
|
3418
3833
|
[[package]]
|
3419
3834
|
name = "windows-sys"
|
3420
3835
|
version = "0.59.0"
|