turbo-html2pdf 0.1.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.
Files changed (164) hide show
  1. turbo_html2pdf-0.1.1/Cargo.lock +2132 -0
  2. turbo_html2pdf-0.1.1/Cargo.toml +27 -0
  3. turbo_html2pdf-0.1.1/PKG-INFO +70 -0
  4. turbo_html2pdf-0.1.1/README.md +50 -0
  5. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/Cargo.toml +140 -0
  6. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/Evolventa-zLXL.ttf +0 -0
  7. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/EvolventaBold-55Xv.ttf +0 -0
  8. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/EvolventaBoldOblique-65y1.ttf +0 -0
  9. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/EvolventaOblique-yPLV.ttf +0 -0
  10. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/Go-Font-LICENSE +27 -0
  11. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/Go-Regular.ttf +0 -0
  12. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/NOTICE.md +41 -0
  13. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/SztyletBold-aOKK.otf +0 -0
  14. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/WarsawGothic-BnBV.otf +0 -0
  15. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/WarsawGothicOblique-Lvan.otf +0 -0
  16. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/fira-code/FiraCode-Bold.ttf +0 -0
  17. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/fira-code/FiraCode-Regular.ttf +0 -0
  18. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/fira-code/OFL.txt +93 -0
  19. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.ttf +0 -0
  20. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/ibm-plex-mono/IBMPlexMono-BoldItalic.ttf +0 -0
  21. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.ttf +0 -0
  22. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.ttf +0 -0
  23. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/ibm-plex-mono/OFL.txt +93 -0
  24. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/inter/Inter-Bold.otf +0 -0
  25. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/inter/Inter-BoldItalic.otf +0 -0
  26. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/inter/Inter-Italic.otf +0 -0
  27. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/inter/Inter-Regular.otf +0 -0
  28. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/inter/LICENSE.txt +92 -0
  29. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/liberation-serif/LICENSE +102 -0
  30. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/liberation-serif/LiberationSerif-Bold.ttf +0 -0
  31. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/liberation-serif/LiberationSerif-BoldItalic.ttf +0 -0
  32. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/liberation-serif/LiberationSerif-Italic.ttf +0 -0
  33. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/liberation-serif/LiberationSerif-Regular.ttf +0 -0
  34. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/pt-serif/OFL.txt +93 -0
  35. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/pt-serif/PTSerif-Bold.ttf +0 -0
  36. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/pt-serif/PTSerif-BoldItalic.ttf +0 -0
  37. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/pt-serif/PTSerif-Italic.ttf +0 -0
  38. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/pt-serif/PTSerif-Regular.ttf +0 -0
  39. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/roboto/OFL.txt +93 -0
  40. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  41. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
  42. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/roboto/Roboto-Italic.ttf +0 -0
  43. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  44. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/icc/README.md +18 -0
  45. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/assets/icc/sRGB-IEC61966-2.1.icc +0 -0
  46. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/benches/fixtures.rs +183 -0
  47. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/benches/render.rs +131 -0
  48. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/append.rs +196 -0
  49. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/color.rs +90 -0
  50. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/document.rs +580 -0
  51. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/encrypt/parse.rs +377 -0
  52. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/encrypt/serialize.rs +201 -0
  53. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/encrypt.rs +386 -0
  54. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/fonts.rs +377 -0
  55. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/graphics.rs +125 -0
  56. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/image.rs +241 -0
  57. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/meta.rs +67 -0
  58. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/mod.rs +139 -0
  59. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/page.rs +242 -0
  60. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/pdfa.rs +225 -0
  61. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/text.rs +87 -0
  62. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/tounicode.rs +103 -0
  63. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/ua.rs +557 -0
  64. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/unit.rs +16 -0
  65. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/watermark.rs +271 -0
  66. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/emit/xref.rs +171 -0
  67. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/endnotes.rs +148 -0
  68. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/error.rs +112 -0
  69. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/image.rs +261 -0
  70. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/block.rs +489 -0
  71. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/boxgen.rs +465 -0
  72. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/boxgen_ua.rs +62 -0
  73. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/boxgen_xref.rs +38 -0
  74. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/flex.rs +304 -0
  75. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/fragment.rs +227 -0
  76. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/imgsize.rs +111 -0
  77. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/inline.rs +374 -0
  78. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/mod.rs +72 -0
  79. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/table.rs +442 -0
  80. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/layout/value.rs +727 -0
  81. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/lib.rs +55 -0
  82. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/node.rs +105 -0
  83. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/options.rs +51 -0
  84. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/paginate/footnotes.rs +307 -0
  85. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/paginate/geometry.rs +226 -0
  86. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/paginate/mod.rs +163 -0
  87. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/paginate/walk.rs +348 -0
  88. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/perf.rs +59 -0
  89. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/render.rs +503 -0
  90. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/style/cascade.rs +449 -0
  91. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/style/mod.rs +76 -0
  92. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/style/parser.rs +190 -0
  93. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/style/selector.rs +366 -0
  94. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/style/token.rs +45 -0
  95. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/svg.rs +145 -0
  96. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/template/filters.rs +312 -0
  97. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/template/functions.rs +33 -0
  98. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/template/markup.rs +148 -0
  99. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/template/mod.rs +258 -0
  100. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/template/regions.rs +198 -0
  101. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/template/switch.rs +407 -0
  102. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/text/bundled.rs +130 -0
  103. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/text/font.rs +276 -0
  104. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/text/inline.rs +186 -0
  105. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/text/mod.rs +13 -0
  106. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/src/text/registry.rs +149 -0
  107. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/append.rs +156 -0
  108. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/bundled_fonts.rs +182 -0
  109. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/common/mod.rs +44 -0
  110. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/conformance_flags.rs +200 -0
  111. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/emit.rs +345 -0
  112. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/encrypt.rs +294 -0
  113. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/endnotes.rs +203 -0
  114. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/filters.rs +269 -0
  115. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/append/empty_tree.pdf +0 -0
  116. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/invoice/data.json +29 -0
  117. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/invoice/style.css +69 -0
  118. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/invoice/template.html +57 -0
  119. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/legal/data.json +67 -0
  120. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/legal/style.css +48 -0
  121. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/legal/template.html +36 -0
  122. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/mixed/data.json +26 -0
  123. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/mixed/template.html +51 -0
  124. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/report/data.json +213 -0
  125. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/report/style.css +82 -0
  126. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures/report/template.html +54 -0
  127. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/fixtures.rs +123 -0
  128. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/footnotes.rs +399 -0
  129. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/image.rs +810 -0
  130. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout.rs +169 -0
  131. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout_block.rs +276 -0
  132. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout_boxgen.rs +233 -0
  133. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout_flex.rs +232 -0
  134. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout_fragment.rs +114 -0
  135. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout_inline.rs +203 -0
  136. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout_table.rs +335 -0
  137. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/layout_value.rs +381 -0
  138. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/nodes.rs +154 -0
  139. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/paginate.rs +402 -0
  140. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/pdf_a.rs +303 -0
  141. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/pdf_ua.rs +260 -0
  142. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/perf.rs +106 -0
  143. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/print_color.rs +156 -0
  144. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/render.rs +322 -0
  145. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/style.rs +374 -0
  146. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/svg.rs +295 -0
  147. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/switch.rs +140 -0
  148. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/templating.rs +291 -0
  149. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/text.rs +238 -0
  150. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/types.rs +89 -0
  151. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/watermark.rs +417 -0
  152. turbo_html2pdf-0.1.1/crates/turbo-pdf-core/tests/xref.rs +173 -0
  153. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/Cargo.toml +40 -0
  154. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/README.md +50 -0
  155. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/build.rs +21 -0
  156. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/src/convert.rs +64 -0
  157. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/src/errors.rs +78 -0
  158. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/src/lib.rs +463 -0
  159. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/tests/test_conformance.py +141 -0
  160. turbo_html2pdf-0.1.1/crates/turbo-pdf-py/tests/test_render.py +79 -0
  161. turbo_html2pdf-0.1.1/pyproject.toml +34 -0
  162. turbo_html2pdf-0.1.1/python/turbo_html2pdf/__init__.py +29 -0
  163. turbo_html2pdf-0.1.1/python/turbo_html2pdf/__init__.pyi +83 -0
  164. turbo_html2pdf-0.1.1/python/turbo_html2pdf/py.typed +0 -0
@@ -0,0 +1,2132 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aes"
13
+ version = "0.8.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "cipher",
19
+ "cpufeatures",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "aho-corasick"
24
+ version = "1.1.4"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
27
+ dependencies = [
28
+ "memchr",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "android_system_properties"
33
+ version = "0.1.5"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
36
+ dependencies = [
37
+ "libc",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "anes"
42
+ version = "0.1.6"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
45
+
46
+ [[package]]
47
+ name = "anstyle"
48
+ version = "1.0.14"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
51
+
52
+ [[package]]
53
+ name = "arrayref"
54
+ version = "0.3.9"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
57
+
58
+ [[package]]
59
+ name = "arrayvec"
60
+ version = "0.7.6"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
63
+
64
+ [[package]]
65
+ name = "autocfg"
66
+ version = "1.5.1"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
69
+
70
+ [[package]]
71
+ name = "base64"
72
+ version = "0.22.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
75
+
76
+ [[package]]
77
+ name = "bitflags"
78
+ version = "1.3.2"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
81
+
82
+ [[package]]
83
+ name = "bitflags"
84
+ version = "2.13.0"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
87
+
88
+ [[package]]
89
+ name = "block-buffer"
90
+ version = "0.10.4"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
93
+ dependencies = [
94
+ "generic-array",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "block-padding"
99
+ version = "0.3.3"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
102
+ dependencies = [
103
+ "generic-array",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "bumpalo"
108
+ version = "3.20.3"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
111
+
112
+ [[package]]
113
+ name = "bytecount"
114
+ version = "0.6.9"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
117
+
118
+ [[package]]
119
+ name = "bytemuck"
120
+ version = "1.25.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
123
+ dependencies = [
124
+ "bytemuck_derive",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "bytemuck_derive"
129
+ version = "1.10.2"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
132
+ dependencies = [
133
+ "proc-macro2",
134
+ "quote",
135
+ "syn",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "cast"
140
+ version = "0.3.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
143
+
144
+ [[package]]
145
+ name = "cbc"
146
+ version = "0.1.2"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
149
+ dependencies = [
150
+ "cipher",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "cc"
155
+ version = "1.2.64"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
158
+ dependencies = [
159
+ "find-msvc-tools",
160
+ "shlex",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "cfg-if"
165
+ version = "1.0.4"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
168
+
169
+ [[package]]
170
+ name = "chrono"
171
+ version = "0.4.45"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
174
+ dependencies = [
175
+ "iana-time-zone",
176
+ "num-traits",
177
+ "windows-link",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "ciborium"
182
+ version = "0.2.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
185
+ dependencies = [
186
+ "ciborium-io",
187
+ "ciborium-ll",
188
+ "serde",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "ciborium-io"
193
+ version = "0.2.2"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
196
+
197
+ [[package]]
198
+ name = "ciborium-ll"
199
+ version = "0.2.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
202
+ dependencies = [
203
+ "ciborium-io",
204
+ "half",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "cipher"
209
+ version = "0.4.4"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
212
+ dependencies = [
213
+ "crypto-common",
214
+ "inout",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "clap"
219
+ version = "4.6.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
222
+ dependencies = [
223
+ "clap_builder",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "clap_builder"
228
+ version = "4.6.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
231
+ dependencies = [
232
+ "anstyle",
233
+ "clap_lex",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "clap_lex"
238
+ version = "1.1.0"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
241
+
242
+ [[package]]
243
+ name = "convert_case"
244
+ version = "0.6.0"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
247
+ dependencies = [
248
+ "unicode-segmentation",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "core-foundation-sys"
253
+ version = "0.8.7"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
256
+
257
+ [[package]]
258
+ name = "core_maths"
259
+ version = "0.1.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
262
+ dependencies = [
263
+ "libm",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "cpufeatures"
268
+ version = "0.2.17"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
271
+ dependencies = [
272
+ "libc",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "crc32fast"
277
+ version = "1.5.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
280
+ dependencies = [
281
+ "cfg-if",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "criterion"
286
+ version = "0.5.1"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
289
+ dependencies = [
290
+ "anes",
291
+ "cast",
292
+ "ciborium",
293
+ "clap",
294
+ "criterion-plot",
295
+ "is-terminal",
296
+ "itertools",
297
+ "num-traits",
298
+ "once_cell",
299
+ "oorandom",
300
+ "plotters",
301
+ "rayon",
302
+ "regex",
303
+ "serde",
304
+ "serde_derive",
305
+ "serde_json",
306
+ "tinytemplate",
307
+ "walkdir",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "criterion-plot"
312
+ version = "0.5.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
315
+ dependencies = [
316
+ "cast",
317
+ "itertools",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "crossbeam-deque"
322
+ version = "0.8.6"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
325
+ dependencies = [
326
+ "crossbeam-epoch",
327
+ "crossbeam-utils",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "crossbeam-epoch"
332
+ version = "0.9.18"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
335
+ dependencies = [
336
+ "crossbeam-utils",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "crossbeam-utils"
341
+ version = "0.8.21"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
344
+
345
+ [[package]]
346
+ name = "crunchy"
347
+ version = "0.2.4"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
350
+
351
+ [[package]]
352
+ name = "crypto-common"
353
+ version = "0.1.7"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
356
+ dependencies = [
357
+ "generic-array",
358
+ "typenum",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "ctor"
363
+ version = "0.2.9"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
366
+ dependencies = [
367
+ "quote",
368
+ "syn",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "data-url"
373
+ version = "0.3.2"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
376
+
377
+ [[package]]
378
+ name = "digest"
379
+ version = "0.10.7"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
382
+ dependencies = [
383
+ "block-buffer",
384
+ "crypto-common",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "ecb"
389
+ version = "0.1.2"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "1a8bfa975b1aec2145850fcaa1c6fe269a16578c44705a532ae3edc92b8881c7"
392
+ dependencies = [
393
+ "cipher",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "either"
398
+ version = "1.16.0"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
401
+
402
+ [[package]]
403
+ name = "encoding_rs"
404
+ version = "0.8.35"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
407
+ dependencies = [
408
+ "cfg-if",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "equivalent"
413
+ version = "1.0.2"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
416
+
417
+ [[package]]
418
+ name = "euclid"
419
+ version = "0.22.14"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
422
+ dependencies = [
423
+ "num-traits",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "fastrand"
428
+ version = "2.4.1"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
431
+
432
+ [[package]]
433
+ name = "fdeflate"
434
+ version = "0.3.7"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
437
+ dependencies = [
438
+ "simd-adler32",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "find-msvc-tools"
443
+ version = "0.1.9"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
446
+
447
+ [[package]]
448
+ name = "flate2"
449
+ version = "1.1.9"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
452
+ dependencies = [
453
+ "crc32fast",
454
+ "miniz_oxide",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "float-cmp"
459
+ version = "0.9.0"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
462
+
463
+ [[package]]
464
+ name = "font-types"
465
+ version = "0.11.3"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "5b38ad915f6dadd993ced50848a8291a543bd41ca62bc10740d5e64e2ab4cfd7"
468
+ dependencies = [
469
+ "bytemuck",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "futures-core"
474
+ version = "0.3.32"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
477
+
478
+ [[package]]
479
+ name = "futures-task"
480
+ version = "0.3.32"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
483
+
484
+ [[package]]
485
+ name = "futures-util"
486
+ version = "0.3.32"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
489
+ dependencies = [
490
+ "futures-core",
491
+ "futures-task",
492
+ "pin-project-lite",
493
+ "slab",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "generic-array"
498
+ version = "0.14.7"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
501
+ dependencies = [
502
+ "typenum",
503
+ "version_check",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "getrandom"
508
+ version = "0.2.17"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
511
+ dependencies = [
512
+ "cfg-if",
513
+ "js-sys",
514
+ "libc",
515
+ "wasi",
516
+ "wasm-bindgen",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "getrandom"
521
+ version = "0.3.4"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
524
+ dependencies = [
525
+ "cfg-if",
526
+ "js-sys",
527
+ "libc",
528
+ "r-efi",
529
+ "wasip2",
530
+ "wasm-bindgen",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "grid"
535
+ version = "0.17.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "71b01d27060ad58be4663b9e4ac9e2d4806918e8876af8912afbddd1a91d5eaa"
538
+
539
+ [[package]]
540
+ name = "half"
541
+ version = "2.7.1"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
544
+ dependencies = [
545
+ "cfg-if",
546
+ "crunchy",
547
+ "zerocopy",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "hashbrown"
552
+ version = "0.17.1"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
555
+
556
+ [[package]]
557
+ name = "heck"
558
+ version = "0.5.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
561
+
562
+ [[package]]
563
+ name = "hermit-abi"
564
+ version = "0.5.2"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
567
+
568
+ [[package]]
569
+ name = "html5ever"
570
+ version = "0.39.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
573
+ dependencies = [
574
+ "log",
575
+ "markup5ever",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "iana-time-zone"
580
+ version = "0.1.65"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
583
+ dependencies = [
584
+ "android_system_properties",
585
+ "core-foundation-sys",
586
+ "iana-time-zone-haiku",
587
+ "js-sys",
588
+ "log",
589
+ "wasm-bindgen",
590
+ "windows-core",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "iana-time-zone-haiku"
595
+ version = "0.1.2"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
598
+ dependencies = [
599
+ "cc",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "imagesize"
604
+ version = "0.13.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285"
607
+
608
+ [[package]]
609
+ name = "indexmap"
610
+ version = "2.14.0"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
613
+ dependencies = [
614
+ "equivalent",
615
+ "hashbrown",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "indoc"
620
+ version = "2.0.7"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
623
+ dependencies = [
624
+ "rustversion",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "inout"
629
+ version = "0.1.4"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
632
+ dependencies = [
633
+ "block-padding",
634
+ "generic-array",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "is-terminal"
639
+ version = "0.4.17"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
642
+ dependencies = [
643
+ "hermit-abi",
644
+ "libc",
645
+ "windows-sys",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "itertools"
650
+ version = "0.10.5"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
653
+ dependencies = [
654
+ "either",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "itoa"
659
+ version = "1.0.18"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
662
+
663
+ [[package]]
664
+ name = "jpeg-decoder"
665
+ version = "0.3.2"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07"
668
+
669
+ [[package]]
670
+ name = "js-sys"
671
+ version = "0.3.102"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
674
+ dependencies = [
675
+ "cfg-if",
676
+ "futures-util",
677
+ "wasm-bindgen",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "kurbo"
682
+ version = "0.11.3"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
685
+ dependencies = [
686
+ "arrayvec",
687
+ "euclid",
688
+ "smallvec",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "kurbo"
693
+ version = "0.13.1"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "4b60dfc32f652b926df6192e55525b16d186c69d47876c3ead4da5cc9f8450e2"
696
+ dependencies = [
697
+ "arrayvec",
698
+ "euclid",
699
+ "polycool",
700
+ "smallvec",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "libc"
705
+ version = "0.2.186"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
708
+
709
+ [[package]]
710
+ name = "libloading"
711
+ version = "0.8.9"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
714
+ dependencies = [
715
+ "cfg-if",
716
+ "windows-link",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "libm"
721
+ version = "0.2.16"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
724
+
725
+ [[package]]
726
+ name = "lock_api"
727
+ version = "0.4.14"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
730
+ dependencies = [
731
+ "scopeguard",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "log"
736
+ version = "0.4.32"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
739
+
740
+ [[package]]
741
+ name = "lopdf"
742
+ version = "0.36.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "59fa2559e99ba0f26a12458aabc754432c805bbb8cba516c427825a997af1fb7"
745
+ dependencies = [
746
+ "aes",
747
+ "bitflags 2.13.0",
748
+ "cbc",
749
+ "ecb",
750
+ "encoding_rs",
751
+ "flate2",
752
+ "indexmap",
753
+ "itoa",
754
+ "log",
755
+ "md-5",
756
+ "nom",
757
+ "nom_locate",
758
+ "rand",
759
+ "rangemap",
760
+ "sha2",
761
+ "stringprep",
762
+ "thiserror",
763
+ "weezl",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "markup5ever"
768
+ version = "0.39.0"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
771
+ dependencies = [
772
+ "log",
773
+ "tendril",
774
+ "web_atoms",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "markup5ever_rcdom"
779
+ version = "0.39.0+unofficial"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "3ac010f19d6c4af81eeb4018a39d7a115de9d285af45c126a4ac02e6fc5716b7"
782
+ dependencies = [
783
+ "html5ever",
784
+ "markup5ever",
785
+ "tendril",
786
+ "xml5ever",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "md-5"
791
+ version = "0.10.6"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
794
+ dependencies = [
795
+ "cfg-if",
796
+ "digest",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "memchr"
801
+ version = "2.8.2"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
804
+
805
+ [[package]]
806
+ name = "memo-map"
807
+ version = "0.3.3"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
810
+
811
+ [[package]]
812
+ name = "memoffset"
813
+ version = "0.9.1"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
816
+ dependencies = [
817
+ "autocfg",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "minijinja"
822
+ version = "2.20.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "2929e494b2280e1e18959bb2e121da03347ae896896fdfaceaab43c88a02803f"
825
+ dependencies = [
826
+ "aho-corasick",
827
+ "indexmap",
828
+ "memo-map",
829
+ "serde",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "miniz_oxide"
834
+ version = "0.8.9"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
837
+ dependencies = [
838
+ "adler2",
839
+ "simd-adler32",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "napi"
844
+ version = "2.16.17"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
847
+ dependencies = [
848
+ "bitflags 2.13.0",
849
+ "ctor",
850
+ "napi-derive",
851
+ "napi-sys",
852
+ "once_cell",
853
+ "serde",
854
+ "serde_json",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "napi-build"
859
+ version = "2.3.2"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
862
+
863
+ [[package]]
864
+ name = "napi-derive"
865
+ version = "2.16.13"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
868
+ dependencies = [
869
+ "cfg-if",
870
+ "convert_case",
871
+ "napi-derive-backend",
872
+ "proc-macro2",
873
+ "quote",
874
+ "syn",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "napi-derive-backend"
879
+ version = "1.0.75"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
882
+ dependencies = [
883
+ "convert_case",
884
+ "once_cell",
885
+ "proc-macro2",
886
+ "quote",
887
+ "regex",
888
+ "semver",
889
+ "syn",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "napi-sys"
894
+ version = "2.4.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
897
+ dependencies = [
898
+ "libloading",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "new_debug_unreachable"
903
+ version = "1.0.6"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
906
+
907
+ [[package]]
908
+ name = "nom"
909
+ version = "8.0.0"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
912
+ dependencies = [
913
+ "memchr",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "nom_locate"
918
+ version = "5.0.0"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "0b577e2d69827c4740cba2b52efaad1c4cc7c73042860b199710b3575c68438d"
921
+ dependencies = [
922
+ "bytecount",
923
+ "memchr",
924
+ "nom",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "num-traits"
929
+ version = "0.2.19"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
932
+ dependencies = [
933
+ "autocfg",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "once_cell"
938
+ version = "1.21.4"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
941
+
942
+ [[package]]
943
+ name = "oorandom"
944
+ version = "11.1.5"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
947
+
948
+ [[package]]
949
+ name = "parking_lot"
950
+ version = "0.12.5"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
953
+ dependencies = [
954
+ "lock_api",
955
+ "parking_lot_core",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "parking_lot_core"
960
+ version = "0.9.12"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
963
+ dependencies = [
964
+ "cfg-if",
965
+ "libc",
966
+ "redox_syscall",
967
+ "smallvec",
968
+ "windows-link",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "pdf-writer"
973
+ version = "0.15.0"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "f5e456864a7a304047bff84977dc6fb162bd956475d40ba50b2dcecaada7f753"
976
+ dependencies = [
977
+ "bitflags 2.13.0",
978
+ "itoa",
979
+ "memchr",
980
+ "ryu",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "phf"
985
+ version = "0.13.1"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
988
+ dependencies = [
989
+ "phf_shared",
990
+ "serde",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "phf_codegen"
995
+ version = "0.13.1"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
998
+ dependencies = [
999
+ "phf_generator",
1000
+ "phf_shared",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "phf_generator"
1005
+ version = "0.13.1"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
1008
+ dependencies = [
1009
+ "fastrand",
1010
+ "phf_shared",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "phf_shared"
1015
+ version = "0.13.1"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1018
+ dependencies = [
1019
+ "siphasher",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "pico-args"
1024
+ version = "0.5.0"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
1027
+
1028
+ [[package]]
1029
+ name = "pin-project-lite"
1030
+ version = "0.2.17"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1033
+
1034
+ [[package]]
1035
+ name = "plotters"
1036
+ version = "0.3.7"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1039
+ dependencies = [
1040
+ "num-traits",
1041
+ "plotters-backend",
1042
+ "plotters-svg",
1043
+ "wasm-bindgen",
1044
+ "web-sys",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "plotters-backend"
1049
+ version = "0.3.7"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1052
+
1053
+ [[package]]
1054
+ name = "plotters-svg"
1055
+ version = "0.3.7"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1058
+ dependencies = [
1059
+ "plotters-backend",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "png"
1064
+ version = "0.17.16"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
1067
+ dependencies = [
1068
+ "bitflags 1.3.2",
1069
+ "crc32fast",
1070
+ "fdeflate",
1071
+ "flate2",
1072
+ "miniz_oxide",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "png"
1077
+ version = "0.18.1"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1080
+ dependencies = [
1081
+ "bitflags 2.13.0",
1082
+ "crc32fast",
1083
+ "fdeflate",
1084
+ "flate2",
1085
+ "miniz_oxide",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "polycool"
1090
+ version = "0.4.0"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "50596ddc09eb5ad5f75cacd40209568e66df71baf86e1499a0e99c4cff12a5a6"
1093
+ dependencies = [
1094
+ "arrayvec",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "portable-atomic"
1099
+ version = "1.13.1"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1102
+
1103
+ [[package]]
1104
+ name = "ppv-lite86"
1105
+ version = "0.2.21"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1108
+ dependencies = [
1109
+ "zerocopy",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "precomputed-hash"
1114
+ version = "0.1.1"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1117
+
1118
+ [[package]]
1119
+ name = "proc-macro2"
1120
+ version = "1.0.106"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1123
+ dependencies = [
1124
+ "unicode-ident",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "pyo3"
1129
+ version = "0.23.5"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
1132
+ dependencies = [
1133
+ "cfg-if",
1134
+ "indoc",
1135
+ "libc",
1136
+ "memoffset",
1137
+ "once_cell",
1138
+ "portable-atomic",
1139
+ "pyo3-build-config",
1140
+ "pyo3-ffi",
1141
+ "pyo3-macros",
1142
+ "unindent",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "pyo3-build-config"
1147
+ version = "0.23.5"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
1150
+ dependencies = [
1151
+ "once_cell",
1152
+ "target-lexicon",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "pyo3-ffi"
1157
+ version = "0.23.5"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
1160
+ dependencies = [
1161
+ "libc",
1162
+ "pyo3-build-config",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "pyo3-macros"
1167
+ version = "0.23.5"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1170
+ dependencies = [
1171
+ "proc-macro2",
1172
+ "pyo3-macros-backend",
1173
+ "quote",
1174
+ "syn",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "pyo3-macros-backend"
1179
+ version = "0.23.5"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1182
+ dependencies = [
1183
+ "heck",
1184
+ "proc-macro2",
1185
+ "pyo3-build-config",
1186
+ "quote",
1187
+ "syn",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "pythonize"
1192
+ version = "0.23.0"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "91a6ee7a084f913f98d70cdc3ebec07e852b735ae3059a1500db2661265da9ff"
1195
+ dependencies = [
1196
+ "pyo3",
1197
+ "serde",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "quote"
1202
+ version = "1.0.45"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1205
+ dependencies = [
1206
+ "proc-macro2",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "r-efi"
1211
+ version = "5.3.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1214
+
1215
+ [[package]]
1216
+ name = "rand"
1217
+ version = "0.9.4"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1220
+ dependencies = [
1221
+ "rand_chacha",
1222
+ "rand_core",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "rand_chacha"
1227
+ version = "0.9.0"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1230
+ dependencies = [
1231
+ "ppv-lite86",
1232
+ "rand_core",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "rand_core"
1237
+ version = "0.9.5"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1240
+ dependencies = [
1241
+ "getrandom 0.3.4",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "rangemap"
1246
+ version = "1.7.1"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "973443cf09a9c8656b574a866ab68dfa19f0867d0340648c7d2f6a71b8a8ea68"
1249
+
1250
+ [[package]]
1251
+ name = "rayon"
1252
+ version = "1.12.0"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1255
+ dependencies = [
1256
+ "either",
1257
+ "rayon-core",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "rayon-core"
1262
+ version = "1.13.0"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1265
+ dependencies = [
1266
+ "crossbeam-deque",
1267
+ "crossbeam-utils",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "read-fonts"
1272
+ version = "0.39.2"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "c4ed38b89c2c77ff968c524145ad65fb010f38af5c7a224b53b81d47ac2daa81"
1275
+ dependencies = [
1276
+ "bytemuck",
1277
+ "font-types",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "redox_syscall"
1282
+ version = "0.5.18"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1285
+ dependencies = [
1286
+ "bitflags 2.13.0",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "regex"
1291
+ version = "1.12.4"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1294
+ dependencies = [
1295
+ "aho-corasick",
1296
+ "memchr",
1297
+ "regex-automata",
1298
+ "regex-syntax",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "regex-automata"
1303
+ version = "0.4.14"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1306
+ dependencies = [
1307
+ "aho-corasick",
1308
+ "memchr",
1309
+ "regex-syntax",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "regex-syntax"
1314
+ version = "0.8.11"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1317
+
1318
+ [[package]]
1319
+ name = "resvg"
1320
+ version = "0.45.1"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "a8928798c0a55e03c9ca6c4c6846f76377427d2c1e1f7e6de3c06ae57942df43"
1323
+ dependencies = [
1324
+ "log",
1325
+ "pico-args",
1326
+ "rgb",
1327
+ "svgtypes",
1328
+ "tiny-skia",
1329
+ "usvg",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "rgb"
1334
+ version = "0.8.53"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
1337
+ dependencies = [
1338
+ "bytemuck",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "roxmltree"
1343
+ version = "0.20.0"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
1346
+
1347
+ [[package]]
1348
+ name = "rustc-hash"
1349
+ version = "2.1.2"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1352
+
1353
+ [[package]]
1354
+ name = "rustversion"
1355
+ version = "1.0.22"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1358
+
1359
+ [[package]]
1360
+ name = "rustybuzz"
1361
+ version = "0.20.1"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
1364
+ dependencies = [
1365
+ "bitflags 2.13.0",
1366
+ "bytemuck",
1367
+ "core_maths",
1368
+ "log",
1369
+ "smallvec",
1370
+ "ttf-parser",
1371
+ "unicode-bidi-mirroring",
1372
+ "unicode-ccc",
1373
+ "unicode-properties",
1374
+ "unicode-script",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "ryu"
1379
+ version = "1.0.23"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1382
+
1383
+ [[package]]
1384
+ name = "same-file"
1385
+ version = "1.0.6"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1388
+ dependencies = [
1389
+ "winapi-util",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "scopeguard"
1394
+ version = "1.2.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1397
+
1398
+ [[package]]
1399
+ name = "self_cell"
1400
+ version = "1.2.2"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
1403
+
1404
+ [[package]]
1405
+ name = "semver"
1406
+ version = "1.0.28"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1409
+
1410
+ [[package]]
1411
+ name = "serde"
1412
+ version = "1.0.228"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1415
+ dependencies = [
1416
+ "serde_core",
1417
+ "serde_derive",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "serde-wasm-bindgen"
1422
+ version = "0.6.5"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1425
+ dependencies = [
1426
+ "js-sys",
1427
+ "serde",
1428
+ "wasm-bindgen",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "serde_bytes"
1433
+ version = "0.11.19"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
1436
+ dependencies = [
1437
+ "serde",
1438
+ "serde_core",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "serde_core"
1443
+ version = "1.0.228"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1446
+ dependencies = [
1447
+ "serde_derive",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "serde_derive"
1452
+ version = "1.0.228"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1455
+ dependencies = [
1456
+ "proc-macro2",
1457
+ "quote",
1458
+ "syn",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "serde_json"
1463
+ version = "1.0.150"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1466
+ dependencies = [
1467
+ "indexmap",
1468
+ "itoa",
1469
+ "memchr",
1470
+ "serde",
1471
+ "serde_core",
1472
+ "zmij",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "sha2"
1477
+ version = "0.10.9"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1480
+ dependencies = [
1481
+ "cfg-if",
1482
+ "cpufeatures",
1483
+ "digest",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "shlex"
1488
+ version = "2.0.1"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1491
+
1492
+ [[package]]
1493
+ name = "simd-adler32"
1494
+ version = "0.3.9"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1497
+
1498
+ [[package]]
1499
+ name = "simplecss"
1500
+ version = "0.2.2"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
1503
+ dependencies = [
1504
+ "log",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "siphasher"
1509
+ version = "1.0.3"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1512
+
1513
+ [[package]]
1514
+ name = "skrifa"
1515
+ version = "0.42.1"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "0c34617370ae968efb7161bb2beb517d9084659aae19e24b89e3db25b46e4564"
1518
+ dependencies = [
1519
+ "bytemuck",
1520
+ "read-fonts",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "slab"
1525
+ version = "0.4.12"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1528
+
1529
+ [[package]]
1530
+ name = "slotmap"
1531
+ version = "1.1.1"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
1534
+ dependencies = [
1535
+ "version_check",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "smallvec"
1540
+ version = "1.15.2"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1543
+
1544
+ [[package]]
1545
+ name = "strict-num"
1546
+ version = "0.1.1"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
1549
+ dependencies = [
1550
+ "float-cmp",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "string_cache"
1555
+ version = "0.9.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
1558
+ dependencies = [
1559
+ "new_debug_unreachable",
1560
+ "parking_lot",
1561
+ "phf_shared",
1562
+ "precomputed-hash",
1563
+ "serde",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "string_cache_codegen"
1568
+ version = "0.6.1"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
1571
+ dependencies = [
1572
+ "phf_generator",
1573
+ "phf_shared",
1574
+ "proc-macro2",
1575
+ "quote",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "stringprep"
1580
+ version = "0.1.5"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
1583
+ dependencies = [
1584
+ "unicode-bidi",
1585
+ "unicode-normalization",
1586
+ "unicode-properties",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "subsetter"
1591
+ version = "0.2.6"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "38803281d1c23166c5ebcb455439a5d2afe711cc909cf88af72448c297756ad6"
1594
+ dependencies = [
1595
+ "kurbo 0.13.1",
1596
+ "rustc-hash",
1597
+ "skrifa",
1598
+ "write-fonts",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "svgtypes"
1603
+ version = "0.15.3"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc"
1606
+ dependencies = [
1607
+ "kurbo 0.11.3",
1608
+ "siphasher",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "syn"
1613
+ version = "2.0.117"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1616
+ dependencies = [
1617
+ "proc-macro2",
1618
+ "quote",
1619
+ "unicode-ident",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "taffy"
1624
+ version = "0.8.3"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "7aaef0ac998e6527d6d0d5582f7e43953bb17221ac75bb8eb2fcc2db3396db1c"
1627
+ dependencies = [
1628
+ "arrayvec",
1629
+ "grid",
1630
+ "serde",
1631
+ "slotmap",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "target-lexicon"
1636
+ version = "0.12.16"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1639
+
1640
+ [[package]]
1641
+ name = "tendril"
1642
+ version = "0.5.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
1645
+ dependencies = [
1646
+ "new_debug_unreachable",
1647
+ "utf-8",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "thiserror"
1652
+ version = "2.0.18"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1655
+ dependencies = [
1656
+ "thiserror-impl",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "thiserror-impl"
1661
+ version = "2.0.18"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1664
+ dependencies = [
1665
+ "proc-macro2",
1666
+ "quote",
1667
+ "syn",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "tiny-skia"
1672
+ version = "0.11.4"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
1675
+ dependencies = [
1676
+ "arrayref",
1677
+ "arrayvec",
1678
+ "bytemuck",
1679
+ "cfg-if",
1680
+ "log",
1681
+ "png 0.17.16",
1682
+ "tiny-skia-path",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "tiny-skia-path"
1687
+ version = "0.11.4"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
1690
+ dependencies = [
1691
+ "arrayref",
1692
+ "bytemuck",
1693
+ "strict-num",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "tinytemplate"
1698
+ version = "1.2.1"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1701
+ dependencies = [
1702
+ "serde",
1703
+ "serde_json",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "tinyvec"
1708
+ version = "1.11.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1711
+ dependencies = [
1712
+ "tinyvec_macros",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "tinyvec_macros"
1717
+ version = "0.1.1"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1720
+
1721
+ [[package]]
1722
+ name = "ttf-parser"
1723
+ version = "0.25.1"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
1726
+ dependencies = [
1727
+ "core_maths",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "turbo-pdf-core"
1732
+ version = "0.1.1"
1733
+ dependencies = [
1734
+ "aes",
1735
+ "cbc",
1736
+ "chrono",
1737
+ "criterion",
1738
+ "getrandom 0.2.17",
1739
+ "html5ever",
1740
+ "jpeg-decoder",
1741
+ "lopdf",
1742
+ "markup5ever_rcdom",
1743
+ "minijinja",
1744
+ "pdf-writer",
1745
+ "png 0.18.1",
1746
+ "resvg",
1747
+ "rustybuzz",
1748
+ "self_cell",
1749
+ "serde",
1750
+ "serde_json",
1751
+ "sha2",
1752
+ "subsetter",
1753
+ "taffy",
1754
+ "thiserror",
1755
+ "unicode-linebreak",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "turbo-pdf-napi"
1760
+ version = "0.1.1"
1761
+ dependencies = [
1762
+ "napi",
1763
+ "napi-build",
1764
+ "napi-derive",
1765
+ "serde",
1766
+ "serde_json",
1767
+ "turbo-pdf-core",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "turbo-pdf-py"
1772
+ version = "0.1.1"
1773
+ dependencies = [
1774
+ "pyo3",
1775
+ "pythonize",
1776
+ "serde_json",
1777
+ "turbo-pdf-core",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "turbo-pdf-wasm"
1782
+ version = "0.1.1"
1783
+ dependencies = [
1784
+ "getrandom 0.2.17",
1785
+ "getrandom 0.3.4",
1786
+ "js-sys",
1787
+ "serde",
1788
+ "serde-wasm-bindgen",
1789
+ "serde_bytes",
1790
+ "serde_json",
1791
+ "turbo-pdf-core",
1792
+ "wasm-bindgen",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "typenum"
1797
+ version = "1.20.1"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1800
+
1801
+ [[package]]
1802
+ name = "unicode-bidi"
1803
+ version = "0.3.18"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1806
+
1807
+ [[package]]
1808
+ name = "unicode-bidi-mirroring"
1809
+ version = "0.4.0"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
1812
+
1813
+ [[package]]
1814
+ name = "unicode-ccc"
1815
+ version = "0.4.0"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
1818
+
1819
+ [[package]]
1820
+ name = "unicode-ident"
1821
+ version = "1.0.24"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1824
+
1825
+ [[package]]
1826
+ name = "unicode-linebreak"
1827
+ version = "0.1.5"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1830
+
1831
+ [[package]]
1832
+ name = "unicode-normalization"
1833
+ version = "0.1.25"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1836
+ dependencies = [
1837
+ "tinyvec",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "unicode-properties"
1842
+ version = "0.1.4"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
1845
+
1846
+ [[package]]
1847
+ name = "unicode-script"
1848
+ version = "0.5.8"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
1851
+
1852
+ [[package]]
1853
+ name = "unicode-segmentation"
1854
+ version = "1.13.3"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1857
+
1858
+ [[package]]
1859
+ name = "unindent"
1860
+ version = "0.2.4"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1863
+
1864
+ [[package]]
1865
+ name = "usvg"
1866
+ version = "0.45.1"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef"
1869
+ dependencies = [
1870
+ "base64",
1871
+ "data-url",
1872
+ "flate2",
1873
+ "imagesize",
1874
+ "kurbo 0.11.3",
1875
+ "log",
1876
+ "pico-args",
1877
+ "roxmltree",
1878
+ "simplecss",
1879
+ "siphasher",
1880
+ "strict-num",
1881
+ "svgtypes",
1882
+ "tiny-skia-path",
1883
+ "xmlwriter",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "utf-8"
1888
+ version = "0.7.6"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1891
+
1892
+ [[package]]
1893
+ name = "version_check"
1894
+ version = "0.9.5"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1897
+
1898
+ [[package]]
1899
+ name = "walkdir"
1900
+ version = "2.5.0"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1903
+ dependencies = [
1904
+ "same-file",
1905
+ "winapi-util",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "wasi"
1910
+ version = "0.11.1+wasi-snapshot-preview1"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1913
+
1914
+ [[package]]
1915
+ name = "wasip2"
1916
+ version = "1.0.4+wasi-0.2.12"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1919
+ dependencies = [
1920
+ "wit-bindgen",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "wasm-bindgen"
1925
+ version = "0.2.125"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
1928
+ dependencies = [
1929
+ "cfg-if",
1930
+ "once_cell",
1931
+ "rustversion",
1932
+ "wasm-bindgen-macro",
1933
+ "wasm-bindgen-shared",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "wasm-bindgen-macro"
1938
+ version = "0.2.125"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
1941
+ dependencies = [
1942
+ "quote",
1943
+ "wasm-bindgen-macro-support",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "wasm-bindgen-macro-support"
1948
+ version = "0.2.125"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
1951
+ dependencies = [
1952
+ "bumpalo",
1953
+ "proc-macro2",
1954
+ "quote",
1955
+ "syn",
1956
+ "wasm-bindgen-shared",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "wasm-bindgen-shared"
1961
+ version = "0.2.125"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
1964
+ dependencies = [
1965
+ "unicode-ident",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "web-sys"
1970
+ version = "0.3.102"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
1973
+ dependencies = [
1974
+ "js-sys",
1975
+ "wasm-bindgen",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "web_atoms"
1980
+ version = "0.2.4"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538"
1983
+ dependencies = [
1984
+ "phf",
1985
+ "phf_codegen",
1986
+ "string_cache",
1987
+ "string_cache_codegen",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "weezl"
1992
+ version = "0.1.12"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
1995
+
1996
+ [[package]]
1997
+ name = "winapi-util"
1998
+ version = "0.1.11"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2001
+ dependencies = [
2002
+ "windows-sys",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "windows-core"
2007
+ version = "0.62.2"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2010
+ dependencies = [
2011
+ "windows-implement",
2012
+ "windows-interface",
2013
+ "windows-link",
2014
+ "windows-result",
2015
+ "windows-strings",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "windows-implement"
2020
+ version = "0.60.2"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2023
+ dependencies = [
2024
+ "proc-macro2",
2025
+ "quote",
2026
+ "syn",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "windows-interface"
2031
+ version = "0.59.3"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2034
+ dependencies = [
2035
+ "proc-macro2",
2036
+ "quote",
2037
+ "syn",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "windows-link"
2042
+ version = "0.2.1"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2045
+
2046
+ [[package]]
2047
+ name = "windows-result"
2048
+ version = "0.4.1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2051
+ dependencies = [
2052
+ "windows-link",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "windows-strings"
2057
+ version = "0.5.1"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2060
+ dependencies = [
2061
+ "windows-link",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "windows-sys"
2066
+ version = "0.61.2"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2069
+ dependencies = [
2070
+ "windows-link",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "wit-bindgen"
2075
+ version = "0.57.1"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2078
+
2079
+ [[package]]
2080
+ name = "write-fonts"
2081
+ version = "0.48.1"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "cb731d4c4d93eacc69a1ad2f270f905788a98e4a3438267bcafbe08d3431c8d8"
2084
+ dependencies = [
2085
+ "font-types",
2086
+ "indexmap",
2087
+ "kurbo 0.13.1",
2088
+ "log",
2089
+ "read-fonts",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "xml5ever"
2094
+ version = "0.39.0"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "5ab627f34ff61b80d756180d556f9c68801d836d271b3b8c094504ceca69d221"
2097
+ dependencies = [
2098
+ "log",
2099
+ "markup5ever",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "xmlwriter"
2104
+ version = "0.1.0"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
2107
+
2108
+ [[package]]
2109
+ name = "zerocopy"
2110
+ version = "0.8.52"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
2113
+ dependencies = [
2114
+ "zerocopy-derive",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "zerocopy-derive"
2119
+ version = "0.8.52"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
2122
+ dependencies = [
2123
+ "proc-macro2",
2124
+ "quote",
2125
+ "syn",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "zmij"
2130
+ version = "1.0.21"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"