vl-convert-python 0.13.0__tar.gz → 0.14.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of vl-convert-python might be problematic. Click here for more details.

Files changed (301) hide show
  1. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0}/Cargo.lock +1071 -864
  2. vl_convert_python-0.14.0/Cargo.toml +10 -0
  3. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0}/PKG-INFO +3 -2
  4. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0}/pyproject.toml +1 -0
  5. vl_convert_python-0.14.0/vl-convert-pdf/Cargo.toml +20 -0
  6. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-pdf}/LICENSE +1 -1
  7. vl_convert_python-0.14.0/vl-convert-pdf/README.md +11 -0
  8. vl_convert_python-0.14.0/vl-convert-pdf/examples/pdf_conversion.rs +21 -0
  9. vl_convert_python-0.14.0/vl-convert-pdf/src/lib.rs +719 -0
  10. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-python}/Cargo.toml +4 -5
  11. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs → vl_convert_python-0.14.0/vl-convert-python}/LICENSE +1 -1
  12. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-python}/README.md +2 -1
  13. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-python}/src/lib.rs +293 -7
  14. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-python}/tests/test_specs.py +141 -3
  15. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs → vl_convert_python-0.14.0/vl-convert-python}/thirdparty_rust.yaml +444 -382
  16. vl_convert_python-0.14.0/vl-convert-rs/Cargo.toml +40 -0
  17. vl_convert_python-0.14.0/vl-convert-rs/LICENSE +11 -0
  18. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/converter.rs +379 -57
  19. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/module_loader/import_map.rs +8 -61
  20. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/test_specs.rs +53 -1
  21. vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/circle_binned_base_url.vl.json +16 -0
  22. vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.png +0 -0
  23. vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.svg +1 -0
  24. vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_9/seattle-weather.vg.json +1 -0
  25. vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_9/seattle-weather.vg.pretty.json +880 -0
  26. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-rs}/thirdparty_rust.yaml +444 -382
  27. vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.15.1-lQeQs8sDPgFa9d7Jm3sd/dist=es2020,mode=imports,min/optimized/vega-lite.js +1 -0
  28. vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.15.1-lQeQs8sDPgFa9d7Jm3sd/mode=imports,min/optimized/vega-lite.js +7 -0
  29. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/import_map.json +4 -57
  30. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor_imports.js +1 -1
  31. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/Cargo.toml +0 -35
  32. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_7/seattle-weather.vg.json +0 -1
  33. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_7/seattle-weather.vg.pretty.json +0 -874
  34. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-array@v2.12.1-Ilh7e293asl3yQWpnFdl/dist=es2020,mode=imports,min/optimized/d3-array.js +0 -1
  35. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-color@v3.0.1-PMFX4FeSjgNPlkOOfuhz/dist=es2020,mode=imports,min/optimized/d3-color.js +0 -1
  36. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-dsv@v3.0.1-u1xCRjaLJc0qqv1Z5ERe/dist=es2020,mode=imports,min/optimized/d3-dsv.js +0 -5
  37. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-format@v3.1.0-D5wAD2odDPNNWsKloKgL/dist=es2020,mode=imports,min/optimized/d3-format.js +0 -1
  38. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-geo@v2.0.2-zBkSruiFfVO6u3ShEPhG/dist=es2020,mode=imports,min/optimized/d3-geo.js +0 -1
  39. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-hierarchy@v3.1.1-XUBgn8lKpyJLfwGxbbh8/dist=es2020,mode=imports,min/optimized/d3-hierarchy.js +0 -1
  40. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-interpolate@v2.0.1-U0ZrxaddqSMRUsLLPYR7/dist=es2020,mode=imports,min/optimized/d3-interpolate.js +0 -1
  41. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-path@v2.0.0-oXvrynQprguatotjJvW7/dist=es2020,mode=imports,min/optimized/d3-path.js +0 -1
  42. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-path@v3.0.1-tHVDF1s2W2KiMuJCxWJF/dist=es2020,mode=imports,min/optimized/d3-path.js +0 -1
  43. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-scale@v3.3.0-ry1CQBwxpRxBupD1QXG9/dist=es2020,mode=imports,min/optimized/d3-scale.js +0 -1
  44. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-shape@v2.1.0-MC4SpKel578y74MsliM9/dist=es2020,mode=imports,min/optimized/d3-shape.js +0 -1
  45. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-shape@v3.1.0-yz7kc2ZI0P02sA7MMeyD/dist=es2020,mode=imports,min/optimized/d3-shape.js +0 -1
  46. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-time-format@v3.0.0-IRDcxbKsu7MvYYkQhe0L/dist=es2020,mode=imports,min/optimized/d3-time-format.js +0 -1
  47. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-time@v2.0.0-gjKVnEljVLBDqbQ9nFA3/dist=es2020,mode=imports,min/optimized/d3-time.js +0 -1
  48. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-time@v2.1.1-PTBGxK4TEXAXwlMfuGhA/dist=es2020,mode=imports,min/optimized/d3-time.js +0 -1
  49. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/internmap@v1.0.1-HLDkqdYa5TOMS4hva8H7/dist=es2020,mode=imports,min/optimized/internmap.js +0 -1
  50. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-canvas@v1.2.7-hCEcvULuKIOqBVGX1Tn8/dist=es2020,mode=imports,min/optimized/vega-canvas.js +0 -1
  51. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-crossfilter@v4.1.0-53dXDPaWgmJ8891tGra1/dist=es2020,mode=imports,min/optimized/vega-crossfilter.js +0 -1
  52. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-dataflow@v5.7.4-DrCzG6Luqf74SfPN5Hxw/dist=es2020,mode=imports,min/optimized/vega-dataflow.js +0 -1
  53. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-encode@v4.9.0-DTdZszvC4Sts6FFZSAIL/dist=es2020,mode=imports,min/optimized/vega-encode.js +0 -1
  54. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-event-selector@v3.0.1-UgiEAWJA4WQL4DTKnV4R/dist=es2020,mode=imports,min/optimized/vega-event-selector.js +0 -1
  55. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-expression@v5.0.0-kP0F2avA8xgwhtleXksI/dist=es2020,mode=imports,min/optimized/vega-expression.js +0 -3
  56. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-force@v4.1.0-poqQfFpESyaalZJ3OVFw/dist=es2020,mode=imports,min/optimized/vega-force.js +0 -1
  57. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-format@v1.0.4-1uFKb12DsLjjrCjIDOQK/dist=es2020,mode=imports,min/optimized/vega-format.js +0 -1
  58. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-format@v1.1.0-B5FcaDDiQ30f8APLWM4h/dist=es2020,mode=imports,min/optimized/vega-format.js +0 -1
  59. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-functions@v5.12.1-G6oHWIVrVbJOnq67V4GW/dist=es2020,mode=imports,min/optimized/vega-functions.js +0 -1
  60. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-functions@v5.13.0-qkDakSuUeiaaLfBXkzwi/dist=es2020,mode=imports,min/optimized/vega-functions.js +0 -1
  61. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-geo@v4.4.0-OPyx4xP2BHsuPy2Mg6Tn/dist=es2020,mode=imports,min/optimized/vega-geo.js +0 -1
  62. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-hierarchy@v4.1.0-sqnz00NvC2UfwrH7Hgs4/dist=es2020,mode=imports,min/optimized/vega-hierarchy.js +0 -1
  63. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-label@v1.2.0-hR00I9PV97W3D9H0bvXR/dist=es2020,mode=imports,min/optimized/vega-label.js +0 -1
  64. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.6.0-jKfgpjSz6Y52Dxyq2kpj/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -1
  65. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-loader@v4.4.1-g6OZb9mGT1iFgFNYp8zS/dist=es2020,mode=imports,min/optimized/vega-loader.js +0 -7
  66. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-loader@v4.5.0-NhsMLBp96EaizeMWgoMP/dist=es2020,mode=imports,min/optimized/vega-loader.js +0 -7
  67. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-parser@v6.1.4-PbzshukasZitnbnp29GQ/dist=es2020,mode=imports,min/optimized/vega-parser.js +0 -1
  68. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-projection@v1.5.0-2aCowBULOQis5lDz06lM/dist=es2020,mode=imports,min/optimized/vega-projection.js +0 -1
  69. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-regression@v1.1.0-6EPP8Ido5g7BoK0OZVk1/dist=es2020,mode=imports,min/optimized/vega-regression.js +0 -1
  70. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-runtime@v6.1.3-ovAqizqBEAgC6bif8m8H/dist=es2020,mode=imports,min/optimized/vega-runtime.js +0 -4
  71. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-scale@v7.1.1-ZDIRLXqFpzGB7NTGb7z6/dist=es2020,mode=imports,min/optimized/vega-scale.js +0 -1
  72. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-scale@v7.2.0-V0J4hKWZmxW22KwUY6dZ/dist=es2020,mode=imports,min/optimized/vega-scale.js +0 -1
  73. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-scenegraph@v4.10.0-2GCI9CL2cGgIKRDV0eDe/dist=es2020,mode=imports,min/optimized/vega-scenegraph.js +0 -2
  74. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-scenegraph@v4.10.1-13A4mjPlVsNAyq2Txh1f/dist=es2020,mode=imports,min/optimized/vega-scenegraph.js +0 -2
  75. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-scenegraph@v4.9.4-Rfd7OGmaS9T7w10Fz4Yx/dist=es2020,mode=imports,min/optimized/vega-scenegraph.js +0 -2
  76. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-selections@v5.3.1-crM1gefxjj3cwUmv2SI7/dist=es2020,mode=imports,min/optimized/vega-selections.js +0 -1
  77. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-selections@v5.4.0-zzF465zXstRQFfOBiACh/dist=es2020,mode=imports,min/optimized/vega-selections.js +0 -1
  78. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-statistics@v1.7.10-LV9NsWqBJNud79RMDFen/dist=es2020,mode=imports,min/optimized/vega-statistics.js +0 -1
  79. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-statistics@v1.8.0-ffGE4n8RjawoHviWdqFQ/dist=es2020,mode=imports,min/optimized/vega-statistics.js +0 -1
  80. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-time@v2.0.4-Ylq8WGKplJoZYQPOPvwD/dist=es2020,mode=imports,min/optimized/vega-time.js +0 -1
  81. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-time@v2.1.0-LVGYZzfDGZrYRhsP6b35/dist=es2020,mode=imports,min/optimized/vega-time.js +0 -1
  82. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-transforms@v4.10.0-6o4uSGsRGTT77VpisBF3/dist=es2020,mode=imports,min/optimized/vega-transforms.js +0 -1
  83. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-view-transforms@v4.5.8-jtX42Ax7WNjhu4BmY9kH/dist=es2020,mode=imports,min/optimized/vega-view-transforms.js +0 -1
  84. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-view@v5.11.0-qj2ShFtxO2P3GWqTy2DZ/dist=es2020,mode=imports,min/optimized/vega-view.js +0 -2
  85. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-voronoi@v4.2.0-Fgoqxxi7ga1TQcAq96ZH/dist=es2020,mode=imports,min/optimized/vega-voronoi.js +0 -1
  86. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-wordcloud@v4.1.3-OgHUJ5oioJWjhWPaZYo1/dist=es2020,mode=imports,min/optimized/vega-wordcloud.js +0 -1
  87. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega@v5.22.1-1GozmoxV3boOt3w4YuEn/dist=es2020,mode=imports,min/optimized/vega.js +0 -1
  88. vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.6.0-jKfgpjSz6Y52Dxyq2kpj/mode=imports,min/optimized/vega-lite.js +0 -7
  89. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-python}/notebooks/convert_vegalite.ipynb +0 -0
  90. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-python}/tests/test_get_local_tz.py +0 -0
  91. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-python}/tests/test_themes.py +0 -0
  92. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs → vl_convert_python-0.14.0/vl-convert-python}/thirdparty_font.md +0 -0
  93. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs → vl_convert_python-0.14.0/vl-convert-python}/thirdparty_javascript.md +0 -0
  94. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/README.md +0 -0
  95. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/examples/conversion1.rs +0 -0
  96. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Bold.ttf +0 -0
  97. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/fonts/liberation-sans/LiberationSans-BoldItalic.ttf +0 -0
  98. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Italic.ttf +0 -0
  99. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Regular.ttf +0 -0
  100. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/fonts/liberation-sans/SIL Open Font License.txt +0 -0
  101. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/image_loading.rs +0 -0
  102. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/lib.rs +0 -0
  103. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/module_loader/mod.rs +0 -0
  104. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/text.rs +0 -0
  105. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/Caveat-VariableFont_wght.ttf +0 -0
  106. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/OFL.txt +0 -0
  107. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/README.txt +0 -0
  108. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Bold.ttf +0 -0
  109. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Medium.ttf +0 -0
  110. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Regular.ttf +0 -0
  111. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-SemiBold.ttf +0 -0
  112. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/test_themes.rs +0 -0
  113. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/bar_chart_trellis_compact.vl.json +0 -0
  114. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/circle_binned.vl.json +0 -0
  115. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/custom_projection.vl.json +0 -0
  116. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v4_17/circle_binned.vg.json +0 -0
  117. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v4_17/circle_binned.vg.pretty.json +0 -0
  118. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v4_17/stacked_bar_h.vg.json +0 -0
  119. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v4_17/stacked_bar_h.vg.pretty.json +0 -0
  120. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_10/circle_binned.vg.json +0 -0
  121. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_10/circle_binned.vg.pretty.json +0 -0
  122. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_10/seattle-weather.vg.json +0 -0
  123. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_10/seattle-weather.vg.pretty.json +0 -0
  124. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_10/stacked_bar_h.vg.json +0 -0
  125. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_10/stacked_bar_h.vg.pretty.json +0 -0
  126. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_11/circle_binned.vg.json +0 -0
  127. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_11/circle_binned.vg.pretty.json +0 -0
  128. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_11/seattle-weather.vg.json +0 -0
  129. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_11/seattle-weather.vg.pretty.json +0 -0
  130. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_11/stacked_bar_h.vg.json +0 -0
  131. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_11/stacked_bar_h.vg.pretty.json +0 -0
  132. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_12/circle_binned.vg.json +0 -0
  133. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_12/circle_binned.vg.pretty.json +0 -0
  134. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_12/seattle-weather.vg.json +0 -0
  135. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_12/seattle-weather.vg.pretty.json +0 -0
  136. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_12/stacked_bar_h.vg.json +0 -0
  137. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_12/stacked_bar_h.vg.pretty.json +0 -0
  138. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_13/circle_binned.vg.json +0 -0
  139. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_13/circle_binned.vg.pretty.json +0 -0
  140. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_13/seattle-weather.vg.json +0 -0
  141. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_13/seattle-weather.vg.pretty.json +0 -0
  142. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_13/stacked_bar_h.vg.json +0 -0
  143. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_13/stacked_bar_h.vg.pretty.json +0 -0
  144. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.json +0 -0
  145. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.pretty.json +0 -0
  146. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.json +0 -0
  147. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.pretty.json +0 -0
  148. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.json +0 -0
  149. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.pretty.json +0 -0
  150. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_6 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_15}/circle_binned.vg.json +0 -0
  151. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_6 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_15}/circle_binned.vg.pretty.json +0 -0
  152. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_8 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_15}/seattle-weather.vg.json +0 -0
  153. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_8 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_15}/seattle-weather.vg.pretty.json +0 -0
  154. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_6 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_15}/stacked_bar_h.vg.json +0 -0
  155. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_6 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_15}/stacked_bar_h.vg.pretty.json +0 -0
  156. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_7/circle_binned.vg.json +0 -0
  157. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_7/circle_binned.vg.pretty.json +0 -0
  158. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_6 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_7}/seattle-weather.vg.json +0 -0
  159. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_6 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_7}/seattle-weather.vg.pretty.json +0 -0
  160. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_7/stacked_bar_h.vg.json +0 -0
  161. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_7/stacked_bar_h.vg.pretty.json +0 -0
  162. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact-excel.png +0 -0
  163. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.png +0 -0
  164. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.svg +0 -0
  165. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned-dark.png +0 -0
  166. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.png +0 -0
  167. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.svg +0 -0
  168. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.json +0 -0
  169. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.pretty.json +0 -0
  170. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/custom_projection.png +0 -0
  171. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.png +0 -0
  172. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.svg +0 -0
  173. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/font_with_quotes.png +0 -0
  174. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale-fivethirtyeight.png +0 -0
  175. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.png +0 -0
  176. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.svg +0 -0
  177. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/lookup_urls.png +0 -0
  178. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background.png +0 -0
  179. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.png +0 -0
  180. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.svg +0 -0
  181. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/numeric_font_weight.svg +0 -0
  182. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/remote_images.png +0 -0
  183. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_9 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_8}/seattle-weather.vg.json +0 -0
  184. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_9 → vl_convert_python-0.14.0/vl-convert-rs/tests/vl-specs/expected/v5_8}/seattle-weather.vg.pretty.json +0 -0
  185. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h-vox.png +0 -0
  186. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.png +0 -0
  187. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.svg +0 -0
  188. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.json +0 -0
  189. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.pretty.json +0 -0
  190. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_9/circle_binned.vg.json +0 -0
  191. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_9/circle_binned.vg.pretty.json +0 -0
  192. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_9/stacked_bar_h.vg.json +0 -0
  193. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/expected/v5_9/stacked_bar_h.vg.pretty.json +0 -0
  194. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/float_font_size.vl.json +0 -0
  195. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/font_with_quotes.vl.json +0 -0
  196. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/line_with_log_scale.vl.json +0 -0
  197. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/lookup_urls.vl.json +0 -0
  198. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/maptile_background.vl.json +0 -0
  199. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/no_text_in_font_metrics.vl.json +0 -0
  200. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/numeric_font_weight.vl.json +0 -0
  201. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/remote_images.vl.json +0 -0
  202. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/seattle-weather.vl.json +0 -0
  203. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/vl-specs/stacked_bar_h.vl.json +0 -0
  204. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-rs}/thirdparty_font.md +0 -0
  205. {vl_convert_python-0.13.0 → vl_convert_python-0.14.0/vl-convert-rs}/thirdparty_javascript.md +0 -0
  206. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/clone@v2.1.2-inH2VLNzDGiYU9HUWyZM/dist=es2020,mode=imports,min/optimized/clone.js +0 -0
  207. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-array@v3.1.1-Ibshj34oOmCw8da1RLSW/dist=es2020,mode=imports,min/optimized/d3-array.js +0 -0
  208. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-array@v3.2.0-zhkQfnMQ2ct1k4iWdZiH/dist=es2020,mode=imports,min/optimized/d3-array.js +0 -0
  209. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-array@v3.2.1-hGTrvmvXYXil9KElf3uD/dist=es2020,mode=imports,min/optimized/d3-array.js +0 -0
  210. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-array@v3.2.2-mREp9VYvdluM4XTkemzD/dist=es2020,mode=imports,min/optimized/d3-array.js +0 -0
  211. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-array@v3.2.3-YYAnwYSQZgGML08QhecQ/dist=es2020,mode=imports,min/optimized/d3-array.js +0 -0
  212. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-color@v2.0.0-M7DoazrAgRWgKp0xauLw → vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-color@v3.0.1-PMFX4FeSjgNPlkOOfuhz}/dist=es2020,mode=imports,min/optimized/d3-color.js +0 -0
  213. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-color@v3.1.0-MWHDMwd2Pvp3NFjvrHgn/dist=es2020,mode=imports,min/optimized/d3-color.js +0 -0
  214. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-delaunay@v6.0.2-W2uPNrmySJLg3U5jTBxc/dist=es2020,mode=imports,min/optimized/d3-delaunay.js +0 -0
  215. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-dispatch@v3.0.1-v6nbfqO2iWOSwp77fYdB/dist=es2020,mode=imports,min/optimized/d3-dispatch.js +0 -0
  216. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-dsv@v2.0.0-uUdcwldzPANNPyEGKCUn → vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-dsv@v3.0.1-u1xCRjaLJc0qqv1Z5ERe}/dist=es2020,mode=imports,min/optimized/d3-dsv.js +0 -0
  217. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-force@v3.0.0-cshj62qMoyIGNIXoil9u/dist=es2020,mode=imports,min/optimized/d3-force.js +0 -0
  218. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-format@v2.0.0-LHjsNQf9R9i81XmXePB9 → vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-format@v3.0.1-LyjmeNp0E5YokPvOjBaD}/dist=es2020,mode=imports,min/optimized/d3-format.js +0 -0
  219. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-format@v3.0.1-LyjmeNp0E5YokPvOjBaD → vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-format@v3.1.0-D5wAD2odDPNNWsKloKgL}/dist=es2020,mode=imports,min/optimized/d3-format.js +0 -0
  220. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-geo-projection@v4.0.0-5Hhxj2zKHEqWYAQIFo3r/dist=es2020,mode=imports,min/optimized/d3-geo-projection.js +0 -0
  221. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-geo@v3.0.1-kwyelOm8gApBxT2oVVB9/dist=es2020,mode=imports,min/optimized/d3-geo.js +0 -0
  222. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-geo@v3.1.0-6gCuCN3p6hXOeZDWcbjw/dist=es2020,mode=imports,min/optimized/d3-geo.js +0 -0
  223. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-hierarchy@v3.1.2-wx7sW10pU4OkfBLgCDCU/dist=es2020,mode=imports,min/optimized/d3-hierarchy.js +0 -0
  224. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-interpolate@v3.0.1-i9AsUdFHwyaukRBWNe8d/dist=es2020,mode=imports,min/optimized/d3-interpolate.js +0 -0
  225. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-path@v3.1.0-nHaUoYzlRDYONpece9h0/dist=es2020,mode=imports,min/optimized/d3-path.js +0 -0
  226. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-quadtree@v3.0.1-sMtwlDFghZGCTQ3UxKMT/dist=es2020,mode=imports,min/optimized/d3-quadtree.js +0 -0
  227. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-scale@v4.0.2-qUv67mnQQKwRMEsPRKcO/dist=es2020,mode=imports,min/optimized/d3-scale.js +0 -0
  228. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-shape@v3.2.0-jvLE9CjF3Vp4eEpVme8s/dist=es2020,mode=imports,min/optimized/d3-shape.js +0 -0
  229. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-time-format@v4.0.0-A7vYeSqgWxeXXSpz1rEp/dist=es2020,mode=imports,min/optimized/d3-time-format.js +0 -0
  230. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-time-format@v4.1.0-f8eZV7eLtGIxvK8uvO3o/dist=es2020,mode=imports,min/optimized/d3-time-format.js +0 -0
  231. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-time@v3.0.0-Ww07wkuPsE2c8Ac33BKQ/dist=es2020,mode=imports,min/optimized/d3-time.js +0 -0
  232. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-time@v3.1.0-hkusO1LcNQpH1ccXwop7/dist=es2020,mode=imports,min/optimized/d3-time.js +0 -0
  233. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/d3-timer@v3.0.1-O0QpYiI2jhOLEJodLnN1/dist=es2020,mode=imports,min/optimized/d3-timer.js +0 -0
  234. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/delaunator@v5.0.0-60DR2BxrKUGp07uAwKTO/dist=es2020,mode=imports,min/optimized/delaunator.js +0 -0
  235. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/fast-deep-equal@v3.1.3-ysejKs1WDEDPxUJhgGoP/dist=es2020,mode=imports,min/optimized/fast-deep-equal.js +0 -0
  236. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/fast-json-stable-stringify@v2.1.0-HLgsuOtxPikt0pw16nth/dist=es2020,mode=imports,min/optimized/fast-json-stable-stringify.js +0 -0
  237. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/internmap@v2.0.3-GWZlRrRMFcDlELwTQEZq/dist=es2020,mode=imports,min/optimized/internmap.js +0 -0
  238. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/robust-predicates@v3.0.1-HLqPGJ72Lz4vKeF3T1y8/dist=es2020,mode=imports,min/optimized/robust-predicates.js +0 -0
  239. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/topojson-client@v3.1.0-fyhI24JwGwsqazuuSEoq/dist=es2020,mode=imports,min/optimized/topojson-client.js +0 -0
  240. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-canvas@v1.2.6-LOIUlXMv11fR2KwlkAGG → vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-canvas@v1.2.7-hCEcvULuKIOqBVGX1Tn8}/dist=es2020,mode=imports,min/optimized/vega-canvas.js +0 -0
  241. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-crossfilter@v4.1.1-0AUAt51ACgvwsfDQr3R4/dist=es2020,mode=imports,min/optimized/vega-crossfilter.js +0 -0
  242. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-dataflow@v5.7.5-asKYS4gpPLMPf64pSozt/dist=es2020,mode=imports,min/optimized/vega-dataflow.js +0 -0
  243. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-encode@v4.9.1-HXqpVeEsceDFyqq451FJ/dist=es2020,mode=imports,min/optimized/vega-encode.js +0 -0
  244. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-encode@v4.9.2-73LzBc3ioSKmAYWtrrRd/dist=es2020,mode=imports,min/optimized/vega-encode.js +0 -0
  245. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-event-selector@v2.0.6-fTsDie9ajW0bqk8q646l/dist=es2020,mode=imports,min/optimized/vega-event-selector.js +0 -0
  246. {vl_convert_python-0.13.0/local_dependencies/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-event-selector@v3.0.0-l4odHnkvkuEDkNxAGBfX → vl_convert_python-0.14.0/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-event-selector@v3.0.1-UgiEAWJA4WQL4DTKnV4R}/dist=es2020,mode=imports,min/optimized/vega-event-selector.js +0 -0
  247. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-expression@v3.0.1-A7mhk5wjrSNOpQiSL1LP/dist=es2020,mode=imports,min/optimized/vega-expression.js +0 -0
  248. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-expression@v5.0.1-M3HJnXNS0AVPna9ohQFr/dist=es2020,mode=imports,min/optimized/vega-expression.js +0 -0
  249. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-expression@v5.1.0-2VnsdaYPtQ6Pi5w8JxN8/dist=es2020,mode=imports,min/optimized/vega-expression.js +0 -0
  250. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-force@v4.2.0-CTEP5XRxhUGWUZM8MwQs/dist=es2020,mode=imports,min/optimized/vega-force.js +0 -0
  251. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-format@v1.1.1-MIkBcxVtnuOzCt2MeOxi/dist=es2020,mode=imports,min/optimized/vega-format.js +0 -0
  252. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-functions@v5.13.1-5gFjwySEK8datc3yFaKG/dist=es2020,mode=imports,min/optimized/vega-functions.js +0 -0
  253. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-functions@v5.13.2-D3m7Mll472SfG8JZdJut/dist=es2020,mode=imports,min/optimized/vega-functions.js +0 -0
  254. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-geo@v4.4.1-8TUdHGrJmGMaKM9x1bwB/dist=es2020,mode=imports,min/optimized/vega-geo.js +0 -0
  255. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-hierarchy@v4.1.1-UOm1ATDeVOQ6Lqji63hi/dist=es2020,mode=imports,min/optimized/vega-hierarchy.js +0 -0
  256. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-label@v1.2.1-hEHqe293fM7lKP2OHb0o/dist=es2020,mode=imports,min/optimized/vega-label.js +0 -0
  257. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v4.17.0-ycT3UrEO81NWOPVKlbjt/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  258. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.10.0-Vm0dgr6cpOyUiTjlPzt9/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  259. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.11.1-Q5Jhmb2acmWm03IObXvn/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  260. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.12.0-ujK64YZaLHcwzRN5lx1E/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  261. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.13.0-GkFo6HVxfKtvVL5RV8aE/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  262. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.14.1-0IRM1VigcIVzRzBRoLFR/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  263. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.7.1-C1L95AD7TVhfiybpzZ1h/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  264. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.8.0-4snbURNltT4se5LjMOKF/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  265. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-lite@v5.9.3-QyXScylQe0TTmb9DRCES/dist=es2020,mode=imports,min/optimized/vega-lite.js +0 -0
  266. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-loader@v4.5.1-e2JpneCYErTzObWVOVxs/dist=es2020,mode=imports,min/optimized/vega-loader.js +0 -0
  267. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-parser@v6.2.0-Ld7hvHcZsTPXKLjR4bzT/dist=es2020,mode=imports,min/optimized/vega-parser.js +0 -0
  268. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-projection@v1.6.0-lGjH1T1qHepW8BpZZrrV/dist=es2020,mode=imports,min/optimized/vega-projection.js +0 -0
  269. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-regression@v1.1.1-ELBZIGcR8Cqea2gKh0Y1/dist=es2020,mode=imports,min/optimized/vega-regression.js +0 -0
  270. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-regression@v1.2.0-qmJkAzTyLtlu9jZBRY67/dist=es2020,mode=imports,min/optimized/vega-regression.js +0 -0
  271. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-runtime@v6.1.4-aFKCWR0DKdVqzAheQZ7x/dist=es2020,mode=imports,min/optimized/vega-runtime.js +0 -0
  272. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-scale@v7.3.0-RE8rHwByiw8oUoAe4pNs/dist=es2020,mode=imports,min/optimized/vega-scale.js +0 -0
  273. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-scenegraph@v4.10.2-W1dltMWN7mO3TARazJA1/dist=es2020,mode=imports,min/optimized/vega-scenegraph.js +0 -0
  274. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-selections@v5.4.1-4yIDtA9NY6vzeN00RWao/dist=es2020,mode=imports,min/optimized/vega-selections.js +0 -0
  275. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-statistics@v1.8.1-mXKADMfVQufwILOgkTiI/dist=es2020,mode=imports,min/optimized/vega-statistics.js +0 -0
  276. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-statistics@v1.9.0-Qw8CjSQVQOg2M6VMgsme/dist=es2020,mode=imports,min/optimized/vega-statistics.js +0 -0
  277. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-themes@v2.14.0-RvUmNETlVH2y3yQM1y36/dist=es2020,mode=imports,min/optimized/vega-themes.js +0 -0
  278. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-time@v2.1.1-Q1TxQbneCNdh5ryZm2Gf/dist=es2020,mode=imports,min/optimized/vega-time.js +0 -0
  279. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-transforms@v4.10.1-SYBZIpEQClYZ8AW84HWl/dist=es2020,mode=imports,min/optimized/vega-transforms.js +0 -0
  280. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-transforms@v4.10.2-ZwuxbjLubhdUwIKHKtlL/dist=es2020,mode=imports,min/optimized/vega-transforms.js +0 -0
  281. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-util@v1.16.1-QtdV0YLGVmjtkzFiPbzm/dist=es2020,mode=imports,min/optimized/vega-util.js +0 -0
  282. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-util@v1.17.0-uRskU0IBL2vWCP4Va8OC/dist=es2020,mode=imports,min/optimized/vega-util.js +0 -0
  283. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-util@v1.17.1-uwuqwLZrXXBeO0DFYRgh/dist=es2020,mode=imports,min/optimized/vega-util.js +0 -0
  284. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-util@v1.17.2-LUfkDhormMyfWqy3Ts6U/dist=es2020,mode=imports,min/optimized/vega-util.js +0 -0
  285. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-view-transforms@v4.5.9-LiB26zIbxiHZW70fnrDI/dist=es2020,mode=imports,min/optimized/vega-view-transforms.js +0 -0
  286. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-view@v5.11.1-FQ9r1BvJOMHegkomXDyj/dist=es2020,mode=imports,min/optimized/vega-view.js +0 -0
  287. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-voronoi@v4.2.1-NrRTxuT3DOJ52CnCL8nc/dist=es2020,mode=imports,min/optimized/vega-voronoi.js +0 -0
  288. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega-wordcloud@v4.1.4-J5ewLsaJzX7o65uuoGqD/dist=es2020,mode=imports,min/optimized/vega-wordcloud.js +0 -0
  289. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega@v5.24.0-1k4m6TDjSYdmzGt1pFvV/dist=es2020,mode=imports,min/optimized/vega.js +0 -0
  290. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/-/vega@v5.25.0-r16knbfAAfBFDoUvoc7K/dist=es2020,mode=imports,min/optimized/vega.js +0 -0
  291. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v4.17.0-ycT3UrEO81NWOPVKlbjt/mode=imports,min/optimized/vega-lite.js +0 -0
  292. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.10.0-Vm0dgr6cpOyUiTjlPzt9/mode=imports,min/optimized/vega-lite.js +0 -0
  293. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.11.1-Q5Jhmb2acmWm03IObXvn/mode=imports,min/optimized/vega-lite.js +0 -0
  294. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.12.0-ujK64YZaLHcwzRN5lx1E/mode=imports,min/optimized/vega-lite.js +0 -0
  295. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.13.0-GkFo6HVxfKtvVL5RV8aE/mode=imports,min/optimized/vega-lite.js +0 -0
  296. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.14.1-0IRM1VigcIVzRzBRoLFR/mode=imports,min/optimized/vega-lite.js +0 -0
  297. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.7.1-C1L95AD7TVhfiybpzZ1h/mode=imports,min/optimized/vega-lite.js +0 -0
  298. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.8.0-4snbURNltT4se5LjMOKF/mode=imports,min/optimized/vega-lite.js +0 -0
  299. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-lite@v5.9.3-QyXScylQe0TTmb9DRCES/mode=imports,min/optimized/vega-lite.js +0 -0
  300. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega-themes@v2.14.0-RvUmNETlVH2y3yQM1y36/mode=imports,min/optimized/vega-themes.js +0 -0
  301. {vl_convert_python-0.13.0/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/cdn.skypack.dev/pin/vega@v5.25.0-r16knbfAAfBFDoUvoc7K/mode=imports,min/optimized/vega.js +0 -0
@@ -37,11 +37,25 @@ dependencies = [
37
37
  "generic-array 0.14.7",
38
38
  ]
39
39
 
40
+ [[package]]
41
+ name = "aead-gcm-stream"
42
+ version = "0.1.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "4a09ecb526d53de2842cc876ee5c9b51161ee60399edeca4cf74892a01b48177"
45
+ dependencies = [
46
+ "aead",
47
+ "aes",
48
+ "cipher",
49
+ "ctr",
50
+ "ghash",
51
+ "subtle",
52
+ ]
53
+
40
54
  [[package]]
41
55
  name = "aes"
42
- version = "0.8.2"
56
+ version = "0.8.3"
43
57
  source = "registry+https://github.com/rust-lang/crates.io-index"
44
- checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
58
+ checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
45
59
  dependencies = [
46
60
  "cfg-if",
47
61
  "cipher",
@@ -50,9 +64,9 @@ dependencies = [
50
64
 
51
65
  [[package]]
52
66
  name = "aes-gcm"
53
- version = "0.10.2"
67
+ version = "0.10.3"
54
68
  source = "registry+https://github.com/rust-lang/crates.io-index"
55
- checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237"
69
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
56
70
  dependencies = [
57
71
  "aead",
58
72
  "aes",
@@ -71,17 +85,6 @@ dependencies = [
71
85
  "aes",
72
86
  ]
73
87
 
74
- [[package]]
75
- name = "ahash"
76
- version = "0.7.6"
77
- source = "registry+https://github.com/rust-lang/crates.io-index"
78
- checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
79
- dependencies = [
80
- "getrandom 0.2.10",
81
- "once_cell",
82
- "version_check",
83
- ]
84
-
85
88
  [[package]]
86
89
  name = "ahash"
87
90
  version = "0.8.3"
@@ -95,9 +98,9 @@ dependencies = [
95
98
 
96
99
  [[package]]
97
100
  name = "aho-corasick"
98
- version = "1.0.2"
101
+ version = "1.1.1"
99
102
  source = "registry+https://github.com/rust-lang/crates.io-index"
100
- checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
103
+ checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab"
101
104
  dependencies = [
102
105
  "memchr",
103
106
  ]
@@ -119,30 +122,44 @@ dependencies = [
119
122
 
120
123
  [[package]]
121
124
  name = "allocator-api2"
122
- version = "0.2.15"
125
+ version = "0.2.16"
123
126
  source = "registry+https://github.com/rust-lang/crates.io-index"
124
- checksum = "56fc6cf8dc8c4158eed8649f9b8b0ea1518eb62b544fe9490d66fa0b349eafe9"
127
+ checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
128
+
129
+ [[package]]
130
+ name = "android-tzdata"
131
+ version = "0.1.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
134
+
135
+ [[package]]
136
+ name = "android_system_properties"
137
+ version = "0.1.5"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
140
+ dependencies = [
141
+ "libc",
142
+ ]
125
143
 
126
144
  [[package]]
127
145
  name = "anstream"
128
- version = "0.3.2"
146
+ version = "0.5.0"
129
147
  source = "registry+https://github.com/rust-lang/crates.io-index"
130
- checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
148
+ checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
131
149
  dependencies = [
132
150
  "anstyle",
133
151
  "anstyle-parse",
134
152
  "anstyle-query",
135
153
  "anstyle-wincon",
136
154
  "colorchoice",
137
- "is-terminal",
138
155
  "utf8parse",
139
156
  ]
140
157
 
141
158
  [[package]]
142
159
  name = "anstyle"
143
- version = "1.0.1"
160
+ version = "1.0.3"
144
161
  source = "registry+https://github.com/rust-lang/crates.io-index"
145
- checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
162
+ checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46"
146
163
 
147
164
  [[package]]
148
165
  name = "anstyle-parse"
@@ -159,24 +176,24 @@ version = "1.0.0"
159
176
  source = "registry+https://github.com/rust-lang/crates.io-index"
160
177
  checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
161
178
  dependencies = [
162
- "windows-sys 0.48.0",
179
+ "windows-sys",
163
180
  ]
164
181
 
165
182
  [[package]]
166
183
  name = "anstyle-wincon"
167
- version = "1.0.1"
184
+ version = "2.1.0"
168
185
  source = "registry+https://github.com/rust-lang/crates.io-index"
169
- checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
186
+ checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
170
187
  dependencies = [
171
188
  "anstyle",
172
- "windows-sys 0.48.0",
189
+ "windows-sys",
173
190
  ]
174
191
 
175
192
  [[package]]
176
193
  name = "anyhow"
177
- version = "1.0.71"
194
+ version = "1.0.75"
178
195
  source = "registry+https://github.com/rust-lang/crates.io-index"
179
- checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
196
+ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
180
197
 
181
198
  [[package]]
182
199
  name = "arrayref"
@@ -212,8 +229,8 @@ version = "0.4.0"
212
229
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
230
  checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
214
231
  dependencies = [
215
- "proc-macro2 1.0.66",
216
- "quote 1.0.28",
232
+ "proc-macro2 1.0.67",
233
+ "quote 1.0.33",
217
234
  "syn 1.0.109",
218
235
  "synstructure",
219
236
  ]
@@ -224,16 +241,16 @@ version = "0.1.0"
224
241
  source = "registry+https://github.com/rust-lang/crates.io-index"
225
242
  checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
226
243
  dependencies = [
227
- "proc-macro2 1.0.66",
228
- "quote 1.0.28",
244
+ "proc-macro2 1.0.67",
245
+ "quote 1.0.33",
229
246
  "syn 1.0.109",
230
247
  ]
231
248
 
232
249
  [[package]]
233
250
  name = "assert_cmd"
234
- version = "2.0.11"
251
+ version = "2.0.12"
235
252
  source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "86d6b683edf8d1119fe420a94f8a7e389239666aa72e65495d91c00462510151"
253
+ checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6"
237
254
  dependencies = [
238
255
  "anstyle",
239
256
  "bstr",
@@ -246,22 +263,22 @@ dependencies = [
246
263
 
247
264
  [[package]]
248
265
  name = "ast_node"
249
- version = "0.9.4"
266
+ version = "0.9.5"
250
267
  source = "registry+https://github.com/rust-lang/crates.io-index"
251
- checksum = "c704e2f6ee1a98223f5a7629a6ef0f3decb3b552ed282889dc957edff98ce1e6"
268
+ checksum = "c09c69dffe06d222d072c878c3afe86eee2179806f20503faec97250268b4c24"
252
269
  dependencies = [
253
- "pmutil 0.5.3",
254
- "proc-macro2 1.0.66",
255
- "quote 1.0.28",
270
+ "pmutil",
271
+ "proc-macro2 1.0.67",
272
+ "quote 1.0.33",
256
273
  "swc_macros_common",
257
- "syn 1.0.109",
274
+ "syn 2.0.37",
258
275
  ]
259
276
 
260
277
  [[package]]
261
278
  name = "async-compression"
262
- version = "0.4.0"
279
+ version = "0.4.3"
263
280
  source = "registry+https://github.com/rust-lang/crates.io-index"
264
- checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11"
281
+ checksum = "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c"
265
282
  dependencies = [
266
283
  "brotli",
267
284
  "flate2",
@@ -273,24 +290,13 @@ dependencies = [
273
290
 
274
291
  [[package]]
275
292
  name = "async-trait"
276
- version = "0.1.68"
293
+ version = "0.1.73"
277
294
  source = "registry+https://github.com/rust-lang/crates.io-index"
278
- checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
295
+ checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
279
296
  dependencies = [
280
- "proc-macro2 1.0.66",
281
- "quote 1.0.28",
282
- "syn 2.0.29",
283
- ]
284
-
285
- [[package]]
286
- name = "atty"
287
- version = "0.2.14"
288
- source = "registry+https://github.com/rust-lang/crates.io-index"
289
- checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
290
- dependencies = [
291
- "hermit-abi 0.1.19",
292
- "libc",
293
- "winapi",
297
+ "proc-macro2 1.0.67",
298
+ "quote 1.0.33",
299
+ "syn 2.0.37",
294
300
  ]
295
301
 
296
302
  [[package]]
@@ -334,9 +340,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
334
340
 
335
341
  [[package]]
336
342
  name = "base64"
337
- version = "0.21.2"
343
+ version = "0.21.4"
338
344
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
- checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
345
+ checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2"
340
346
 
341
347
  [[package]]
342
348
  name = "base64-simd"
@@ -363,6 +369,12 @@ dependencies = [
363
369
  "scoped-tls",
364
370
  ]
365
371
 
372
+ [[package]]
373
+ name = "bit_field"
374
+ version = "0.10.2"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
377
+
366
378
  [[package]]
367
379
  name = "bitflags"
368
380
  version = "1.3.2"
@@ -416,27 +428,26 @@ dependencies = [
416
428
 
417
429
  [[package]]
418
430
  name = "bstr"
419
- version = "1.5.0"
431
+ version = "1.6.2"
420
432
  source = "registry+https://github.com/rust-lang/crates.io-index"
421
- checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5"
433
+ checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a"
422
434
  dependencies = [
423
435
  "memchr",
424
- "once_cell",
425
436
  "regex-automata",
426
437
  "serde",
427
438
  ]
428
439
 
429
440
  [[package]]
430
441
  name = "bumpalo"
431
- version = "3.13.0"
442
+ version = "3.14.0"
432
443
  source = "registry+https://github.com/rust-lang/crates.io-index"
433
- checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
444
+ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
434
445
 
435
446
  [[package]]
436
447
  name = "bytemuck"
437
- version = "1.13.1"
448
+ version = "1.14.0"
438
449
  source = "registry+https://github.com/rust-lang/crates.io-index"
439
- checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
450
+ checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
440
451
 
441
452
  [[package]]
442
453
  name = "byteorder"
@@ -446,9 +457,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
446
457
 
447
458
  [[package]]
448
459
  name = "bytes"
449
- version = "1.4.0"
460
+ version = "1.5.0"
450
461
  source = "registry+https://github.com/rust-lang/crates.io-index"
451
- checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
462
+ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
452
463
 
453
464
  [[package]]
454
465
  name = "cache_control"
@@ -467,11 +478,12 @@ dependencies = [
467
478
 
468
479
  [[package]]
469
480
  name = "cc"
470
- version = "1.0.79"
481
+ version = "1.0.83"
471
482
  source = "registry+https://github.com/rust-lang/crates.io-index"
472
- checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
483
+ checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
473
484
  dependencies = [
474
485
  "jobserver",
486
+ "libc",
475
487
  ]
476
488
 
477
489
  [[package]]
@@ -480,6 +492,19 @@ version = "1.0.0"
480
492
  source = "registry+https://github.com/rust-lang/crates.io-index"
481
493
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
482
494
 
495
+ [[package]]
496
+ name = "chrono"
497
+ version = "0.4.31"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
500
+ dependencies = [
501
+ "android-tzdata",
502
+ "iana-time-zone",
503
+ "num-traits",
504
+ "serde",
505
+ "windows-targets",
506
+ ]
507
+
483
508
  [[package]]
484
509
  name = "cipher"
485
510
  version = "0.4.4"
@@ -492,45 +517,43 @@ dependencies = [
492
517
 
493
518
  [[package]]
494
519
  name = "clap"
495
- version = "4.3.8"
520
+ version = "4.4.4"
496
521
  source = "registry+https://github.com/rust-lang/crates.io-index"
497
- checksum = "d9394150f5b4273a1763355bd1c2ec54cc5a2593f790587bcd6b2c947cfa9211"
522
+ checksum = "b1d7b8d5ec32af0fadc644bf1fd509a688c2103b185644bb1e29d164e0703136"
498
523
  dependencies = [
499
524
  "clap_builder",
500
525
  "clap_derive",
501
- "once_cell",
502
526
  ]
503
527
 
504
528
  [[package]]
505
529
  name = "clap_builder"
506
- version = "4.3.8"
530
+ version = "4.4.4"
507
531
  source = "registry+https://github.com/rust-lang/crates.io-index"
508
- checksum = "9a78fbdd3cc2914ddf37ba444114bc7765bbdcb55ec9cbe6fa054f0137400717"
532
+ checksum = "5179bb514e4d7c2051749d8fcefa2ed6d06a9f4e6d69faf3805f5d80b8cf8d56"
509
533
  dependencies = [
510
534
  "anstream",
511
535
  "anstyle",
512
- "bitflags 1.3.2",
513
536
  "clap_lex",
514
537
  "strsim",
515
538
  ]
516
539
 
517
540
  [[package]]
518
541
  name = "clap_derive"
519
- version = "4.3.2"
542
+ version = "4.4.2"
520
543
  source = "registry+https://github.com/rust-lang/crates.io-index"
521
- checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f"
544
+ checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873"
522
545
  dependencies = [
523
546
  "heck",
524
- "proc-macro2 1.0.66",
525
- "quote 1.0.28",
526
- "syn 2.0.29",
547
+ "proc-macro2 1.0.67",
548
+ "quote 1.0.33",
549
+ "syn 2.0.37",
527
550
  ]
528
551
 
529
552
  [[package]]
530
553
  name = "clap_lex"
531
- version = "0.5.0"
554
+ version = "0.5.1"
532
555
  source = "registry+https://github.com/rust-lang/crates.io-index"
533
- checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
556
+ checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961"
534
557
 
535
558
  [[package]]
536
559
  name = "cmake"
@@ -565,9 +588,9 @@ dependencies = [
565
588
 
566
589
  [[package]]
567
590
  name = "const-oid"
568
- version = "0.9.2"
591
+ version = "0.9.5"
569
592
  source = "registry+https://github.com/rust-lang/crates.io-index"
570
- checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913"
593
+ checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
571
594
 
572
595
  [[package]]
573
596
  name = "convert_case"
@@ -593,9 +616,9 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
593
616
 
594
617
  [[package]]
595
618
  name = "cpufeatures"
596
- version = "0.2.8"
619
+ version = "0.2.9"
597
620
  source = "registry+https://github.com/rust-lang/crates.io-index"
598
- checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c"
621
+ checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
599
622
  dependencies = [
600
623
  "libc",
601
624
  ]
@@ -652,6 +675,12 @@ dependencies = [
652
675
  "cfg-if",
653
676
  ]
654
677
 
678
+ [[package]]
679
+ name = "crunchy"
680
+ version = "0.2.2"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
683
+
655
684
  [[package]]
656
685
  name = "crypto-bigint"
657
686
  version = "0.4.9"
@@ -666,9 +695,9 @@ dependencies = [
666
695
 
667
696
  [[package]]
668
697
  name = "crypto-bigint"
669
- version = "0.5.2"
698
+ version = "0.5.3"
670
699
  source = "registry+https://github.com/rust-lang/crates.io-index"
671
- checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15"
700
+ checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124"
672
701
  dependencies = [
673
702
  "generic-array 0.14.7",
674
703
  "rand_core 0.6.4",
@@ -711,9 +740,9 @@ dependencies = [
711
740
 
712
741
  [[package]]
713
742
  name = "curve25519-dalek"
714
- version = "4.0.0-rc.3"
743
+ version = "4.1.1"
715
744
  source = "registry+https://github.com/rust-lang/crates.io-index"
716
- checksum = "436ace70fc06e06f7f689d2624dc4e2f0ea666efb5aa704215f7249ae6e047a7"
745
+ checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
717
746
  dependencies = [
718
747
  "cfg-if",
719
748
  "cpufeatures",
@@ -731,19 +760,19 @@ version = "0.1.0"
731
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
732
761
  checksum = "83fdaf97f4804dcebfa5862639bc9ce4121e82140bec2a987ac5140294865b5b"
733
762
  dependencies = [
734
- "proc-macro2 1.0.66",
735
- "quote 1.0.28",
736
- "syn 2.0.29",
763
+ "proc-macro2 1.0.67",
764
+ "quote 1.0.33",
765
+ "syn 2.0.37",
737
766
  ]
738
767
 
739
768
  [[package]]
740
769
  name = "dashmap"
741
- version = "5.4.0"
770
+ version = "5.5.3"
742
771
  source = "registry+https://github.com/rust-lang/crates.io-index"
743
- checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
772
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
744
773
  dependencies = [
745
774
  "cfg-if",
746
- "hashbrown 0.12.3",
775
+ "hashbrown 0.14.0",
747
776
  "lock_api",
748
777
  "once_cell",
749
778
  "parking_lot_core",
@@ -761,6 +790,22 @@ version = "0.2.0"
761
790
  source = "registry+https://github.com/rust-lang/crates.io-index"
762
791
  checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5"
763
792
 
793
+ [[package]]
794
+ name = "data-url"
795
+ version = "0.3.0"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "41b319d1b62ffbd002e057f36bebd1f42b9f97927c9577461d855f3513c4289f"
798
+
799
+ [[package]]
800
+ name = "debugid"
801
+ version = "0.8.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
804
+ dependencies = [
805
+ "serde",
806
+ "uuid",
807
+ ]
808
+
764
809
  [[package]]
765
810
  name = "deno-proc-macro-rules"
766
811
  version = "0.3.2"
@@ -768,8 +813,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
768
813
  checksum = "3c65c2ffdafc1564565200967edc4851c7b55422d3913466688907efd05ea26f"
769
814
  dependencies = [
770
815
  "deno-proc-macro-rules-macros",
771
- "proc-macro2 1.0.66",
772
- "syn 2.0.29",
816
+ "proc-macro2 1.0.67",
817
+ "syn 2.0.37",
773
818
  ]
774
819
 
775
820
  [[package]]
@@ -779,16 +824,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
779
824
  checksum = "3047b312b7451e3190865713a4dd6e1f821aed614ada219766ebc3024a690435"
780
825
  dependencies = [
781
826
  "once_cell",
782
- "proc-macro2 1.0.66",
783
- "quote 1.0.28",
784
- "syn 2.0.29",
827
+ "proc-macro2 1.0.67",
828
+ "quote 1.0.33",
829
+ "syn 2.0.37",
785
830
  ]
786
831
 
787
832
  [[package]]
788
833
  name = "deno_ast"
789
- version = "0.27.3"
834
+ version = "0.29.3"
790
835
  source = "registry+https://github.com/rust-lang/crates.io-index"
791
- checksum = "6b17e25531279d9795aeb076909c91c9b369fa63fd4d801486950577d0457d22"
836
+ checksum = "577ec3850834c2578eb44afa9250f9a807f8497664e6e2aaae19cea0aac2fe3b"
792
837
  dependencies = [
793
838
  "anyhow",
794
839
  "base64 0.13.1",
@@ -822,9 +867,9 @@ dependencies = [
822
867
 
823
868
  [[package]]
824
869
  name = "deno_broadcast_channel"
825
- version = "0.109.0"
870
+ version = "0.113.0"
826
871
  source = "registry+https://github.com/rust-lang/crates.io-index"
827
- checksum = "a67695ec715882c612d2c199cddffe0e51ed86f8b65752166c90e7d406a2a751"
872
+ checksum = "5db8daa7abc0040328967dbf6e45147febe4d0362ac290d06d28bd1b2bdf69d0"
828
873
  dependencies = [
829
874
  "async-trait",
830
875
  "deno_core",
@@ -834,9 +879,9 @@ dependencies = [
834
879
 
835
880
  [[package]]
836
881
  name = "deno_cache"
837
- version = "0.47.0"
882
+ version = "0.51.0"
838
883
  source = "registry+https://github.com/rust-lang/crates.io-index"
839
- checksum = "3aec8f7db8a10e7591758bebe06f0aba5a2acbad5404c31bb859e742ea4c6e12"
884
+ checksum = "c6d291bc76ba31f38018f934e46844a8be5b4d6d594584d27a44d800ee339b96"
840
885
  dependencies = [
841
886
  "async-trait",
842
887
  "deno_core",
@@ -848,24 +893,25 @@ dependencies = [
848
893
 
849
894
  [[package]]
850
895
  name = "deno_console"
851
- version = "0.115.0"
896
+ version = "0.119.0"
852
897
  source = "registry+https://github.com/rust-lang/crates.io-index"
853
- checksum = "19ab05b798826985966deb29fc6773ed29570de2f2147a30c4289c7cdf635214"
898
+ checksum = "106305c29d87aaa8030a472486074ba780dccc75c909a4f55bbac4376d8425a3"
854
899
  dependencies = [
855
900
  "deno_core",
856
901
  ]
857
902
 
858
903
  [[package]]
859
904
  name = "deno_core"
860
- version = "0.200.0"
905
+ version = "0.214.0"
861
906
  source = "registry+https://github.com/rust-lang/crates.io-index"
862
- checksum = "a8ba264b90ceb6e95b39d82e674d8ecae86ca012f900338ea50d1a077d9d75fd"
907
+ checksum = "be0af76effe9a766f7c9a253171ab10b9adfaf4b10c6eb0b9f005f9dd0ba2948"
863
908
  dependencies = [
864
909
  "anyhow",
865
910
  "bytes",
866
911
  "deno_ops",
912
+ "deno_unsync 0.2.1",
867
913
  "futures",
868
- "indexmap 1.9.3",
914
+ "indexmap 2.0.0",
869
915
  "libc",
870
916
  "log",
871
917
  "once_cell",
@@ -875,7 +921,7 @@ dependencies = [
875
921
  "serde_json",
876
922
  "serde_v8",
877
923
  "smallvec",
878
- "sourcemap",
924
+ "sourcemap 7.0.0",
879
925
  "tokio",
880
926
  "url",
881
927
  "v8",
@@ -883,9 +929,9 @@ dependencies = [
883
929
 
884
930
  [[package]]
885
931
  name = "deno_crypto"
886
- version = "0.129.0"
932
+ version = "0.133.0"
887
933
  source = "registry+https://github.com/rust-lang/crates.io-index"
888
- checksum = "7247d39660238354f71103f0db7a944c3ac3fb6759ab5410d708f7496eaa89a5"
934
+ checksum = "da44f7e0da3865d67f28e2a4308ccb8462bcd955fc8b73414c201297425d8f3b"
889
935
  dependencies = [
890
936
  "aes",
891
937
  "aes-gcm",
@@ -919,12 +965,12 @@ dependencies = [
919
965
 
920
966
  [[package]]
921
967
  name = "deno_fetch"
922
- version = "0.139.0"
968
+ version = "0.143.0"
923
969
  source = "registry+https://github.com/rust-lang/crates.io-index"
924
- checksum = "e4f1b9a643427c7f732a4540e250560e1801970f033bae0d5e4abc7b83e36160"
970
+ checksum = "7f6b68ddfb8506da0af214e41c608e75a2b867a587e8110f07bf8da5171649ff"
925
971
  dependencies = [
926
972
  "bytes",
927
- "data-url",
973
+ "data-url 0.3.0",
928
974
  "deno_core",
929
975
  "deno_tls",
930
976
  "dyn-clone",
@@ -937,9 +983,9 @@ dependencies = [
937
983
 
938
984
  [[package]]
939
985
  name = "deno_ffi"
940
- version = "0.102.0"
986
+ version = "0.106.0"
941
987
  source = "registry+https://github.com/rust-lang/crates.io-index"
942
- checksum = "dbe90f222a36db0eb0f4c9e81c28d6dc1f0619610943ded0782b3ccff2c4d569"
988
+ checksum = "a771c9d8141618fd383515a868e5384b93daa6436a6997fe9bb10d6a77cc83ec"
943
989
  dependencies = [
944
990
  "deno_core",
945
991
  "dlopen",
@@ -955,9 +1001,9 @@ dependencies = [
955
1001
 
956
1002
  [[package]]
957
1003
  name = "deno_fs"
958
- version = "0.25.0"
1004
+ version = "0.29.0"
959
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
960
- checksum = "5093d5bbdfab5ff849cbe91a1f929dbae68bb53bdf79d67ae86670e8031dbeac"
1006
+ checksum = "9426fdfd2961574560736e9ddae5599ec373b65c32d15309216f25fc562c2b05"
961
1007
  dependencies = [
962
1008
  "async-trait",
963
1009
  "deno_core",
@@ -975,9 +1021,9 @@ dependencies = [
975
1021
 
976
1022
  [[package]]
977
1023
  name = "deno_http"
978
- version = "0.110.0"
1024
+ version = "0.114.0"
979
1025
  source = "registry+https://github.com/rust-lang/crates.io-index"
980
- checksum = "5e51a352b2c70189f7155aa6a413c916e7ee72da080dff740b95f644c2578f08"
1026
+ checksum = "807c5e2d63a773d54eef5e83bcc8ac00a348d6177e440a23030a6954f2446d0a"
981
1027
  dependencies = [
982
1028
  "async-compression",
983
1029
  "async-trait",
@@ -992,7 +1038,7 @@ dependencies = [
992
1038
  "fly-accept-encoding",
993
1039
  "http",
994
1040
  "httparse",
995
- "hyper 0.14.26",
1041
+ "hyper 0.14.27",
996
1042
  "hyper 1.0.0-rc.4",
997
1043
  "memmem",
998
1044
  "mime",
@@ -1011,9 +1057,9 @@ dependencies = [
1011
1057
 
1012
1058
  [[package]]
1013
1059
  name = "deno_io"
1014
- version = "0.25.0"
1060
+ version = "0.29.0"
1015
1061
  source = "registry+https://github.com/rust-lang/crates.io-index"
1016
- checksum = "74fd76d605f98f03716e57896b47f8c6276309c7981007b906ff029908efbbaa"
1062
+ checksum = "937d448e3bdf75a790a7eb4ad03f23b93cc2be7d1e1a1d6cb315459a7b5f7ccd"
1017
1063
  dependencies = [
1018
1064
  "async-trait",
1019
1065
  "deno_core",
@@ -1026,29 +1072,37 @@ dependencies = [
1026
1072
 
1027
1073
  [[package]]
1028
1074
  name = "deno_kv"
1029
- version = "0.23.0"
1075
+ version = "0.27.0"
1030
1076
  source = "registry+https://github.com/rust-lang/crates.io-index"
1031
- checksum = "8421c3fc2877ee939c64d03632af2714b528f8870a53c257f3053a26ff73f9de"
1077
+ checksum = "512b333f6d058362ad321f67a2daa7bea740af0709ac4f613045aff1e18d9b56"
1032
1078
  dependencies = [
1033
1079
  "anyhow",
1034
1080
  "async-trait",
1035
1081
  "base64 0.13.1",
1082
+ "chrono",
1036
1083
  "deno_core",
1084
+ "deno_unsync 0.1.1",
1037
1085
  "hex",
1086
+ "log",
1038
1087
  "num-bigint",
1088
+ "prost",
1089
+ "prost-build",
1039
1090
  "rand",
1091
+ "reqwest",
1040
1092
  "rusqlite",
1041
1093
  "serde",
1042
1094
  "serde_json",
1095
+ "termcolor",
1043
1096
  "tokio",
1097
+ "url",
1044
1098
  "uuid",
1045
1099
  ]
1046
1100
 
1047
1101
  [[package]]
1048
1102
  name = "deno_lockfile"
1049
- version = "0.15.0"
1103
+ version = "0.17.1"
1050
1104
  source = "registry+https://github.com/rust-lang/crates.io-index"
1051
- checksum = "3e1fcc91fa4e18c3e0574965d7133709e76eda665cb589de703219f0819dfaec"
1105
+ checksum = "c7673d66847223bd4115075a96b0699da71b1755524aeb3956f0a3edf3af3217"
1052
1106
  dependencies = [
1053
1107
  "ring",
1054
1108
  "serde",
@@ -1058,20 +1112,20 @@ dependencies = [
1058
1112
 
1059
1113
  [[package]]
1060
1114
  name = "deno_media_type"
1061
- version = "0.1.1"
1115
+ version = "0.1.2"
1062
1116
  source = "registry+https://github.com/rust-lang/crates.io-index"
1063
- checksum = "001d69b833ed4d244b608bab9c07069bfb570f631b763b58e73f82a020bf84ef"
1117
+ checksum = "a798670c20308e5770cc0775de821424ff9e85665b602928509c8c70430b3ee0"
1064
1118
  dependencies = [
1065
- "data-url",
1119
+ "data-url 0.3.0",
1066
1120
  "serde",
1067
1121
  "url",
1068
1122
  ]
1069
1123
 
1070
1124
  [[package]]
1071
1125
  name = "deno_napi"
1072
- version = "0.45.0"
1126
+ version = "0.49.0"
1073
1127
  source = "registry+https://github.com/rust-lang/crates.io-index"
1074
- checksum = "5f59dc8b695436446c321c1de59d472d79764acbfbcefc50dd2fa202c7aa9417"
1128
+ checksum = "930626e5b0313489dbc380cf2117083b28b0aa8dc8259459f9f0d9ba8ccc0d33"
1075
1129
  dependencies = [
1076
1130
  "deno_core",
1077
1131
  "libloading",
@@ -1079,9 +1133,9 @@ dependencies = [
1079
1133
 
1080
1134
  [[package]]
1081
1135
  name = "deno_net"
1082
- version = "0.107.0"
1136
+ version = "0.111.0"
1083
1137
  source = "registry+https://github.com/rust-lang/crates.io-index"
1084
- checksum = "4925202ba8af63c44cff743780c26b01e7a266c2efde286efef5dfd90a1b1da5"
1138
+ checksum = "b50a8025108d059967e569e9f067820cb494834bef439cfba38ffe4477777443"
1085
1139
  dependencies = [
1086
1140
  "deno_core",
1087
1141
  "deno_tls",
@@ -1089,7 +1143,7 @@ dependencies = [
1089
1143
  "log",
1090
1144
  "pin-project",
1091
1145
  "serde",
1092
- "socket2 0.4.9",
1146
+ "socket2 0.5.4",
1093
1147
  "tokio",
1094
1148
  "trust-dns-proto",
1095
1149
  "trust-dns-resolver",
@@ -1097,18 +1151,21 @@ dependencies = [
1097
1151
 
1098
1152
  [[package]]
1099
1153
  name = "deno_node"
1100
- version = "0.52.0"
1154
+ version = "0.56.0"
1101
1155
  source = "registry+https://github.com/rust-lang/crates.io-index"
1102
- checksum = "74a5c14404af70bdbef4f904b20f328cd0f3d29a3e51f42557c974c03bfae339"
1156
+ checksum = "e1231675ab5b30827490d83bd68c4f77b115599d0800e06f0215705f942b6aab"
1103
1157
  dependencies = [
1158
+ "aead-gcm-stream",
1104
1159
  "aes",
1105
1160
  "brotli",
1161
+ "bytes",
1106
1162
  "cbc",
1107
1163
  "data-encoding",
1108
1164
  "deno_core",
1109
1165
  "deno_fetch",
1110
1166
  "deno_fs",
1111
1167
  "deno_media_type",
1168
+ "deno_net",
1112
1169
  "deno_npm",
1113
1170
  "deno_semver",
1114
1171
  "digest 0.10.7",
@@ -1116,10 +1173,12 @@ dependencies = [
1116
1173
  "ecb",
1117
1174
  "elliptic-curve 0.13.5",
1118
1175
  "errno 0.2.8",
1176
+ "h2",
1119
1177
  "hex",
1120
1178
  "hkdf",
1179
+ "http",
1121
1180
  "idna 0.3.0",
1122
- "indexmap 1.9.3",
1181
+ "indexmap 2.0.0",
1123
1182
  "lazy-regex",
1124
1183
  "libc",
1125
1184
  "libz-sys",
@@ -1149,6 +1208,7 @@ dependencies = [
1149
1208
  "signature 1.6.4",
1150
1209
  "tokio",
1151
1210
  "typenum",
1211
+ "url",
1152
1212
  "whoami",
1153
1213
  "winapi",
1154
1214
  "x25519-dalek",
@@ -1157,9 +1217,9 @@ dependencies = [
1157
1217
 
1158
1218
  [[package]]
1159
1219
  name = "deno_npm"
1160
- version = "0.11.0"
1220
+ version = "0.15.1"
1161
1221
  source = "registry+https://github.com/rust-lang/crates.io-index"
1162
- checksum = "341f2c3935bee51c15203c587213c42d120f0dc56f0aca912a4bebbf038d1030"
1222
+ checksum = "7aba69155a585297af4b9ba8d204567bcd51b25af77b5f4c8856b867019093ba"
1163
1223
  dependencies = [
1164
1224
  "anyhow",
1165
1225
  "async-trait",
@@ -1174,32 +1234,30 @@ dependencies = [
1174
1234
 
1175
1235
  [[package]]
1176
1236
  name = "deno_ops"
1177
- version = "0.78.0"
1237
+ version = "0.90.0"
1178
1238
  source = "registry+https://github.com/rust-lang/crates.io-index"
1179
- checksum = "ffd1c83b1fd465ee0156f2917c9af9ca09fe2bf54052a2cae1a8dcbc7b89aefc"
1239
+ checksum = "568aba570695e05f08c2181bcd6cd3579684af42f489b9ae42712348044b4af7"
1180
1240
  dependencies = [
1181
1241
  "deno-proc-macro-rules",
1182
1242
  "lazy-regex",
1183
1243
  "once_cell",
1184
- "pmutil 0.6.1",
1244
+ "pmutil",
1185
1245
  "proc-macro-crate",
1186
- "proc-macro2 1.0.66",
1187
- "quote 1.0.28",
1246
+ "proc-macro2 1.0.67",
1247
+ "quote 1.0.33",
1188
1248
  "regex",
1189
1249
  "strum",
1190
1250
  "strum_macros",
1191
- "syn 1.0.109",
1192
- "syn 2.0.29",
1251
+ "syn 2.0.37",
1193
1252
  "thiserror",
1194
1253
  ]
1195
1254
 
1196
1255
  [[package]]
1197
1256
  name = "deno_runtime"
1198
- version = "0.123.0"
1257
+ version = "0.127.0"
1199
1258
  source = "registry+https://github.com/rust-lang/crates.io-index"
1200
- checksum = "5f75fb21fb6f25c74548442909582ed63e8343e3b5e0d1604ca182852189dfd9"
1259
+ checksum = "201cb5efb9ff9a99ace000f596a268e86edb9913e5ba16dd497b6e9e217d39df"
1201
1260
  dependencies = [
1202
- "atty",
1203
1261
  "console_static_text",
1204
1262
  "deno_ast",
1205
1263
  "deno_broadcast_channel",
@@ -1229,7 +1287,7 @@ dependencies = [
1229
1287
  "fs3",
1230
1288
  "fwdansi",
1231
1289
  "http",
1232
- "hyper 0.14.26",
1290
+ "hyper 0.14.27",
1233
1291
  "libc",
1234
1292
  "log",
1235
1293
  "netif",
@@ -1245,15 +1303,16 @@ dependencies = [
1245
1303
  "tokio",
1246
1304
  "tokio-metrics",
1247
1305
  "uuid",
1306
+ "which",
1248
1307
  "winapi",
1249
1308
  "winres",
1250
1309
  ]
1251
1310
 
1252
1311
  [[package]]
1253
1312
  name = "deno_semver"
1254
- version = "0.3.0"
1313
+ version = "0.5.0"
1255
1314
  source = "registry+https://github.com/rust-lang/crates.io-index"
1256
- checksum = "96f99990457915af1f444900003ffd5a9d3ab2e5337b06d681e56ca371b3e11f"
1315
+ checksum = "594fd570fecc994ef602b96214f9d6c8ae11e60e29e37e89ab90af7f6b7f9d00"
1257
1316
  dependencies = [
1258
1317
  "monch",
1259
1318
  "once_cell",
@@ -1264,25 +1323,43 @@ dependencies = [
1264
1323
 
1265
1324
  [[package]]
1266
1325
  name = "deno_tls"
1267
- version = "0.102.0"
1326
+ version = "0.106.0"
1268
1327
  source = "registry+https://github.com/rust-lang/crates.io-index"
1269
- checksum = "010ce5e0a920b2364c75a9e38bcd3344bfe55a6b6cd9ef6717d78e5478f9bcb3"
1328
+ checksum = "3385b41563d9c4f62ab41c5a154670c3468f02918fd43daea78a2905912a4e83"
1270
1329
  dependencies = [
1271
1330
  "deno_core",
1272
1331
  "once_cell",
1273
1332
  "rustls",
1274
1333
  "rustls-native-certs",
1275
1334
  "rustls-pemfile",
1335
+ "rustls-webpki",
1276
1336
  "serde",
1277
- "webpki",
1278
- "webpki-roots 0.22.6",
1337
+ "webpki-roots",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "deno_unsync"
1342
+ version = "0.1.1"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "ac0984205f25e71ddd1be603d76e70255953c12ff864707359ab195d26dfc7b3"
1345
+ dependencies = [
1346
+ "tokio",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "deno_unsync"
1351
+ version = "0.2.1"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "0720e562455d6374a5292baec3fc895ed8bfed0937428e3245e50979924e5b15"
1354
+ dependencies = [
1355
+ "tokio",
1279
1356
  ]
1280
1357
 
1281
1358
  [[package]]
1282
1359
  name = "deno_url"
1283
- version = "0.115.0"
1360
+ version = "0.119.0"
1284
1361
  source = "registry+https://github.com/rust-lang/crates.io-index"
1285
- checksum = "20490fff3b0f8c176a815e26371ff23313ea7f39cd51057701524c5b6fc36f6c"
1362
+ checksum = "df3885daa41f0236c622801aa7e7b6efdff1e253fbaa941eb5087ec3e7339114"
1286
1363
  dependencies = [
1287
1364
  "deno_core",
1288
1365
  "serde",
@@ -1291,35 +1368,37 @@ dependencies = [
1291
1368
 
1292
1369
  [[package]]
1293
1370
  name = "deno_web"
1294
- version = "0.146.0"
1371
+ version = "0.150.0"
1295
1372
  source = "registry+https://github.com/rust-lang/crates.io-index"
1296
- checksum = "1dc8dda6e1337d4739ae9e94d75521689824d82a7deb154a2972b6eedac64507"
1373
+ checksum = "227c8b22e230c85a7cbc5632a6ce81959d277deabd2dfc015dda332c33b1a20d"
1297
1374
  dependencies = [
1298
1375
  "async-trait",
1299
1376
  "base64-simd",
1377
+ "bytes",
1300
1378
  "deno_core",
1301
1379
  "encoding_rs",
1302
1380
  "flate2",
1381
+ "futures",
1303
1382
  "serde",
1304
1383
  "tokio",
1305
1384
  "uuid",
1306
- "windows-sys 0.48.0",
1385
+ "windows-sys",
1307
1386
  ]
1308
1387
 
1309
1388
  [[package]]
1310
1389
  name = "deno_webidl"
1311
- version = "0.115.0"
1390
+ version = "0.119.0"
1312
1391
  source = "registry+https://github.com/rust-lang/crates.io-index"
1313
- checksum = "73159d81053ead02e938b46d4bb7224c8e7cf25273ac16a250fb45bb09af7635"
1392
+ checksum = "26983f124cb3d641d940eb2636a103f4907f02b4cd3b52e3acd8365f20a33c08"
1314
1393
  dependencies = [
1315
1394
  "deno_core",
1316
1395
  ]
1317
1396
 
1318
1397
  [[package]]
1319
1398
  name = "deno_websocket"
1320
- version = "0.120.0"
1399
+ version = "0.124.0"
1321
1400
  source = "registry+https://github.com/rust-lang/crates.io-index"
1322
- checksum = "7ff7e0e7ce26323a609b0ff3ab508209a6499133e73e3e371afb350e1e4a0099"
1401
+ checksum = "57cd8a4b97bf577f291fd3d5a0a4e9ff4aa880d9817d6aef72c02570211007d4"
1323
1402
  dependencies = [
1324
1403
  "bytes",
1325
1404
  "deno_core",
@@ -1327,7 +1406,7 @@ dependencies = [
1327
1406
  "deno_tls",
1328
1407
  "fastwebsockets",
1329
1408
  "http",
1330
- "hyper 0.14.26",
1409
+ "hyper 0.14.27",
1331
1410
  "once_cell",
1332
1411
  "serde",
1333
1412
  "tokio",
@@ -1336,9 +1415,9 @@ dependencies = [
1336
1415
 
1337
1416
  [[package]]
1338
1417
  name = "deno_webstorage"
1339
- version = "0.110.0"
1418
+ version = "0.114.0"
1340
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1341
- checksum = "55ec19fba3273d180e91ddb3cefcd664376993e19dd15cf2955731c39f7d14a5"
1420
+ checksum = "1d0909de090c65cae77db5aacc4daa07e6c4ac048bf2d266d49f8142fe560ccf"
1342
1421
  dependencies = [
1343
1422
  "deno_core",
1344
1423
  "deno_web",
@@ -1359,9 +1438,9 @@ dependencies = [
1359
1438
 
1360
1439
  [[package]]
1361
1440
  name = "der"
1362
- version = "0.7.6"
1441
+ version = "0.7.8"
1363
1442
  source = "registry+https://github.com/rust-lang/crates.io-index"
1364
- checksum = "56acb310e15652100da43d130af8d97b509e95af61aab1c5a7939ef24337ee17"
1443
+ checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
1365
1444
  dependencies = [
1366
1445
  "const-oid",
1367
1446
  "pem-rfc7468 0.7.0",
@@ -1382,6 +1461,12 @@ dependencies = [
1382
1461
  "rusticata-macros",
1383
1462
  ]
1384
1463
 
1464
+ [[package]]
1465
+ name = "deranged"
1466
+ version = "0.3.8"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
1469
+
1385
1470
  [[package]]
1386
1471
  name = "derive_more"
1387
1472
  version = "0.99.17"
@@ -1389,8 +1474,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
1474
  checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
1390
1475
  dependencies = [
1391
1476
  "convert_case",
1392
- "proc-macro2 1.0.66",
1393
- "quote 1.0.28",
1477
+ "proc-macro2 1.0.67",
1478
+ "quote 1.0.33",
1394
1479
  "rustc_version 0.4.0",
1395
1480
  "syn 1.0.109",
1396
1481
  ]
@@ -1440,7 +1525,7 @@ dependencies = [
1440
1525
  "libc",
1441
1526
  "option-ext",
1442
1527
  "redox_users",
1443
- "windows-sys 0.48.0",
1528
+ "windows-sys",
1444
1529
  ]
1445
1530
 
1446
1531
  [[package]]
@@ -1449,9 +1534,9 @@ version = "0.2.4"
1449
1534
  source = "registry+https://github.com/rust-lang/crates.io-index"
1450
1535
  checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
1451
1536
  dependencies = [
1452
- "proc-macro2 1.0.66",
1453
- "quote 1.0.28",
1454
- "syn 2.0.29",
1537
+ "proc-macro2 1.0.67",
1538
+ "quote 1.0.33",
1539
+ "syn 2.0.37",
1455
1540
  ]
1456
1541
 
1457
1542
  [[package]]
@@ -1485,9 +1570,9 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
1485
1570
 
1486
1571
  [[package]]
1487
1572
  name = "dprint-swc-ext"
1488
- version = "0.10.0"
1573
+ version = "0.12.0"
1489
1574
  source = "registry+https://github.com/rust-lang/crates.io-index"
1490
- checksum = "dd4dda8a1b920e8be367aeaad035753d21bb69b3c50515afb41ab1eefbb886b5"
1575
+ checksum = "6a0a2492465344a58a37ae119de59e81fe5a2885f2711c7b5048ef0dfa14ce42"
1491
1576
  dependencies = [
1492
1577
  "bumpalo",
1493
1578
  "num-bigint",
@@ -1532,12 +1617,12 @@ dependencies = [
1532
1617
 
1533
1618
  [[package]]
1534
1619
  name = "dssim-core"
1535
- version = "3.2.6"
1620
+ version = "3.2.7"
1536
1621
  source = "registry+https://github.com/rust-lang/crates.io-index"
1537
- checksum = "60aa0237471586cfb40481b3855a897b86d380eae78fe852d844ab1e3d1d896b"
1622
+ checksum = "1388544389475fcfd718b35a286af17cb215202af26bf2067d0e1024adbc3fe9"
1538
1623
  dependencies = [
1539
1624
  "imgref",
1540
- "itertools",
1625
+ "itertools 0.11.0",
1541
1626
  "rayon",
1542
1627
  "rgb",
1543
1628
  ]
@@ -1550,9 +1635,9 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
1550
1635
 
1551
1636
  [[package]]
1552
1637
  name = "dyn-clone"
1553
- version = "1.0.11"
1638
+ version = "1.0.14"
1554
1639
  source = "registry+https://github.com/rust-lang/crates.io-index"
1555
- checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
1640
+ checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd"
1556
1641
 
1557
1642
  [[package]]
1558
1643
  name = "dynasm"
@@ -1564,8 +1649,8 @@ dependencies = [
1564
1649
  "byteorder",
1565
1650
  "lazy_static",
1566
1651
  "proc-macro-error",
1567
- "proc-macro2 1.0.66",
1568
- "quote 1.0.28",
1652
+ "proc-macro2 1.0.67",
1653
+ "quote 1.0.33",
1569
1654
  "syn 1.0.109",
1570
1655
  ]
1571
1656
 
@@ -1582,9 +1667,9 @@ dependencies = [
1582
1667
 
1583
1668
  [[package]]
1584
1669
  name = "ecb"
1585
- version = "0.1.1"
1670
+ version = "0.1.2"
1586
1671
  source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "17fd84ba81a904351ee27bbccb4aa2461e1cca04176a63ab4f8ca087757681a2"
1672
+ checksum = "1a8bfa975b1aec2145850fcaa1c6fe269a16578c44705a532ae3edc92b8881c7"
1588
1673
  dependencies = [
1589
1674
  "cipher",
1590
1675
  ]
@@ -1603,11 +1688,11 @@ dependencies = [
1603
1688
 
1604
1689
  [[package]]
1605
1690
  name = "ecdsa"
1606
- version = "0.16.7"
1691
+ version = "0.16.8"
1607
1692
  source = "registry+https://github.com/rust-lang/crates.io-index"
1608
- checksum = "0997c976637b606099b9985693efa3581e84e41f5c11ba5255f88711058ad428"
1693
+ checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4"
1609
1694
  dependencies = [
1610
- "der 0.7.6",
1695
+ "der 0.7.8",
1611
1696
  "digest 0.10.7",
1612
1697
  "elliptic-curve 0.13.5",
1613
1698
  "rfc6979 0.4.0",
@@ -1617,9 +1702,9 @@ dependencies = [
1617
1702
 
1618
1703
  [[package]]
1619
1704
  name = "either"
1620
- version = "1.8.1"
1705
+ version = "1.9.0"
1621
1706
  source = "registry+https://github.com/rust-lang/crates.io-index"
1622
- checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
1707
+ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
1623
1708
 
1624
1709
  [[package]]
1625
1710
  name = "elliptic-curve"
@@ -1650,7 +1735,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
1735
  checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b"
1651
1736
  dependencies = [
1652
1737
  "base16ct 0.2.0",
1653
- "crypto-bigint 0.5.2",
1738
+ "crypto-bigint 0.5.3",
1654
1739
  "digest 0.10.7",
1655
1740
  "ff 0.13.0",
1656
1741
  "generic-array 0.14.7",
@@ -1659,16 +1744,16 @@ dependencies = [
1659
1744
  "pem-rfc7468 0.7.0",
1660
1745
  "pkcs8 0.10.2",
1661
1746
  "rand_core 0.6.4",
1662
- "sec1 0.7.2",
1747
+ "sec1 0.7.3",
1663
1748
  "subtle",
1664
1749
  "zeroize",
1665
1750
  ]
1666
1751
 
1667
1752
  [[package]]
1668
1753
  name = "encoding_rs"
1669
- version = "0.8.31"
1754
+ version = "0.8.33"
1670
1755
  source = "registry+https://github.com/rust-lang/crates.io-index"
1671
- checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
1756
+ checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
1672
1757
  dependencies = [
1673
1758
  "cfg-if",
1674
1759
  ]
@@ -1680,8 +1765,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
1765
  checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
1681
1766
  dependencies = [
1682
1767
  "heck",
1683
- "proc-macro2 1.0.66",
1684
- "quote 1.0.28",
1768
+ "proc-macro2 1.0.67",
1769
+ "quote 1.0.33",
1685
1770
  "syn 1.0.109",
1686
1771
  ]
1687
1772
 
@@ -1700,9 +1785,9 @@ dependencies = [
1700
1785
 
1701
1786
  [[package]]
1702
1787
  name = "equivalent"
1703
- version = "1.0.0"
1788
+ version = "1.0.1"
1704
1789
  source = "registry+https://github.com/rust-lang/crates.io-index"
1705
- checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
1790
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1706
1791
 
1707
1792
  [[package]]
1708
1793
  name = "errno"
@@ -1717,13 +1802,13 @@ dependencies = [
1717
1802
 
1718
1803
  [[package]]
1719
1804
  name = "errno"
1720
- version = "0.3.1"
1805
+ version = "0.3.3"
1721
1806
  source = "registry+https://github.com/rust-lang/crates.io-index"
1722
- checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
1807
+ checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd"
1723
1808
  dependencies = [
1724
1809
  "errno-dragonfly",
1725
1810
  "libc",
1726
- "windows-sys 0.48.0",
1811
+ "windows-sys",
1727
1812
  ]
1728
1813
 
1729
1814
  [[package]]
@@ -1736,6 +1821,22 @@ dependencies = [
1736
1821
  "libc",
1737
1822
  ]
1738
1823
 
1824
+ [[package]]
1825
+ name = "exr"
1826
+ version = "1.71.0"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8"
1829
+ dependencies = [
1830
+ "bit_field",
1831
+ "flume",
1832
+ "half",
1833
+ "lebe",
1834
+ "miniz_oxide",
1835
+ "rayon-core",
1836
+ "smallvec",
1837
+ "zune-inflate",
1838
+ ]
1839
+
1739
1840
  [[package]]
1740
1841
  name = "fallible-iterator"
1741
1842
  version = "0.2.0"
@@ -1750,9 +1851,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
1750
1851
 
1751
1852
  [[package]]
1752
1853
  name = "fallible_collections"
1753
- version = "0.4.8"
1854
+ version = "0.4.9"
1754
1855
  source = "registry+https://github.com/rust-lang/crates.io-index"
1755
- checksum = "618bf220e692a59c50e7b281149f53c3fe93e0cf0b40c050fc2af8c9ecb28505"
1856
+ checksum = "a88c69768c0a15262df21899142bc6df9b9b823546d4b4b9a7bc2d6c448ec6fd"
1756
1857
  dependencies = [
1757
1858
  "hashbrown 0.13.2",
1758
1859
  ]
@@ -1769,8 +1870,8 @@ version = "0.4.4"
1769
1870
  source = "registry+https://github.com/rust-lang/crates.io-index"
1770
1871
  checksum = "9e6185b6dc9dddc4db0dedd2e213047e93bcbf7a0fb092abc4c4e4f3195efdb4"
1771
1872
  dependencies = [
1772
- "base64 0.21.2",
1773
- "hyper 0.14.26",
1873
+ "base64 0.21.4",
1874
+ "hyper 0.14.27",
1774
1875
  "pin-project",
1775
1876
  "rand",
1776
1877
  "sha1",
@@ -1811,27 +1912,33 @@ dependencies = [
1811
1912
 
1812
1913
  [[package]]
1813
1914
  name = "fiat-crypto"
1814
- version = "0.1.20"
1915
+ version = "0.2.1"
1815
1916
  source = "registry+https://github.com/rust-lang/crates.io-index"
1816
- checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77"
1917
+ checksum = "d0870c84016d4b481be5c9f323c24f65e31e901ae618f0e80f4308fb00de1d2d"
1817
1918
 
1818
1919
  [[package]]
1819
1920
  name = "filetime"
1820
- version = "0.2.21"
1921
+ version = "0.2.22"
1821
1922
  source = "registry+https://github.com/rust-lang/crates.io-index"
1822
- checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
1923
+ checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
1823
1924
  dependencies = [
1824
1925
  "cfg-if",
1825
1926
  "libc",
1826
- "redox_syscall 0.2.16",
1827
- "windows-sys 0.48.0",
1927
+ "redox_syscall 0.3.5",
1928
+ "windows-sys",
1828
1929
  ]
1829
1930
 
1931
+ [[package]]
1932
+ name = "fixedbitset"
1933
+ version = "0.4.2"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1936
+
1830
1937
  [[package]]
1831
1938
  name = "flate2"
1832
- version = "1.0.26"
1939
+ version = "1.0.27"
1833
1940
  source = "registry+https://github.com/rust-lang/crates.io-index"
1834
- checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
1941
+ checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010"
1835
1942
  dependencies = [
1836
1943
  "crc32fast",
1837
1944
  "libz-ng-sys",
@@ -1847,6 +1954,15 @@ dependencies = [
1847
1954
  "num-traits",
1848
1955
  ]
1849
1956
 
1957
+ [[package]]
1958
+ name = "flume"
1959
+ version = "0.11.0"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
1962
+ dependencies = [
1963
+ "spin 0.9.8",
1964
+ ]
1965
+
1850
1966
  [[package]]
1851
1967
  name = "fly-accept-encoding"
1852
1968
  version = "0.2.0"
@@ -1854,7 +1970,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
1970
  checksum = "a3afa7516fdcfd8e5e93a938f8fec857785ced190a1f62d842d1fe1ffbe22ba8"
1855
1971
  dependencies = [
1856
1972
  "http",
1857
- "itertools",
1973
+ "itertools 0.10.5",
1858
1974
  "thiserror",
1859
1975
  ]
1860
1976
 
@@ -1866,9 +1982,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1866
1982
 
1867
1983
  [[package]]
1868
1984
  name = "fontconfig-parser"
1869
- version = "0.5.2"
1985
+ version = "0.5.3"
1870
1986
  source = "registry+https://github.com/rust-lang/crates.io-index"
1871
- checksum = "4ab2e12762761366dcb876ab8b6e0cfa4797ddcd890575919f008b5ba655672a"
1987
+ checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4"
1872
1988
  dependencies = [
1873
1989
  "roxmltree",
1874
1990
  ]
@@ -1884,7 +2000,7 @@ dependencies = [
1884
2000
  "memmap2 0.6.2",
1885
2001
  "slotmap",
1886
2002
  "tinyvec",
1887
- "ttf-parser 0.19.1",
2003
+ "ttf-parser 0.19.2",
1888
2004
  ]
1889
2005
 
1890
2006
  [[package]]
@@ -1903,9 +2019,9 @@ version = "0.2.3"
1903
2019
  source = "registry+https://github.com/rust-lang/crates.io-index"
1904
2020
  checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
1905
2021
  dependencies = [
1906
- "proc-macro2 1.0.66",
1907
- "quote 1.0.28",
1908
- "syn 2.0.29",
2022
+ "proc-macro2 1.0.67",
2023
+ "quote 1.0.33",
2024
+ "syn 2.0.37",
1909
2025
  ]
1910
2026
 
1911
2027
  [[package]]
@@ -1925,14 +2041,14 @@ dependencies = [
1925
2041
 
1926
2042
  [[package]]
1927
2043
  name = "from_variant"
1928
- version = "0.1.5"
2044
+ version = "0.1.6"
1929
2045
  source = "registry+https://github.com/rust-lang/crates.io-index"
1930
- checksum = "1d449976075322384507443937df2f1d5577afbf4282f12a5a66ef29fa3e6307"
2046
+ checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f"
1931
2047
  dependencies = [
1932
- "pmutil 0.5.3",
1933
- "proc-macro2 1.0.66",
2048
+ "pmutil",
2049
+ "proc-macro2 1.0.67",
1934
2050
  "swc_macros_common",
1935
- "syn 1.0.109",
2051
+ "syn 2.0.37",
1936
2052
  ]
1937
2053
 
1938
2054
  [[package]]
@@ -2019,9 +2135,9 @@ version = "0.3.28"
2019
2135
  source = "registry+https://github.com/rust-lang/crates.io-index"
2020
2136
  checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2021
2137
  dependencies = [
2022
- "proc-macro2 1.0.66",
2023
- "quote 1.0.28",
2024
- "syn 2.0.29",
2138
+ "proc-macro2 1.0.67",
2139
+ "quote 1.0.33",
2140
+ "syn 2.0.37",
2025
2141
  ]
2026
2142
 
2027
2143
  [[package]]
@@ -2147,6 +2263,12 @@ version = "0.28.0"
2147
2263
  source = "registry+https://github.com/rust-lang/crates.io-index"
2148
2264
  checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
2149
2265
 
2266
+ [[package]]
2267
+ name = "glob"
2268
+ version = "0.3.1"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2271
+
2150
2272
  [[package]]
2151
2273
  name = "group"
2152
2274
  version = "0.12.1"
@@ -2171,9 +2293,9 @@ dependencies = [
2171
2293
 
2172
2294
  [[package]]
2173
2295
  name = "h2"
2174
- version = "0.3.19"
2296
+ version = "0.3.21"
2175
2297
  source = "registry+https://github.com/rust-lang/crates.io-index"
2176
- checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
2298
+ checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
2177
2299
  dependencies = [
2178
2300
  "bytes",
2179
2301
  "fnv",
@@ -2188,6 +2310,15 @@ dependencies = [
2188
2310
  "tracing",
2189
2311
  ]
2190
2312
 
2313
+ [[package]]
2314
+ name = "half"
2315
+ version = "2.2.1"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0"
2318
+ dependencies = [
2319
+ "crunchy",
2320
+ ]
2321
+
2191
2322
  [[package]]
2192
2323
  name = "hashbrown"
2193
2324
  version = "0.12.3"
@@ -2200,7 +2331,7 @@ version = "0.13.2"
2200
2331
  source = "registry+https://github.com/rust-lang/crates.io-index"
2201
2332
  checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2202
2333
  dependencies = [
2203
- "ahash 0.8.3",
2334
+ "ahash",
2204
2335
  ]
2205
2336
 
2206
2337
  [[package]]
@@ -2209,15 +2340,15 @@ version = "0.14.0"
2209
2340
  source = "registry+https://github.com/rust-lang/crates.io-index"
2210
2341
  checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2211
2342
  dependencies = [
2212
- "ahash 0.8.3",
2343
+ "ahash",
2213
2344
  "allocator-api2",
2214
2345
  ]
2215
2346
 
2216
2347
  [[package]]
2217
2348
  name = "hashlink"
2218
- version = "0.8.3"
2349
+ version = "0.8.4"
2219
2350
  source = "registry+https://github.com/rust-lang/crates.io-index"
2220
- checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f"
2351
+ checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
2221
2352
  dependencies = [
2222
2353
  "hashbrown 0.14.0",
2223
2354
  ]
@@ -2230,27 +2361,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2230
2361
 
2231
2362
  [[package]]
2232
2363
  name = "hermit-abi"
2233
- version = "0.1.19"
2234
- source = "registry+https://github.com/rust-lang/crates.io-index"
2235
- checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2236
- dependencies = [
2237
- "libc",
2238
- ]
2239
-
2240
- [[package]]
2241
- name = "hermit-abi"
2242
- version = "0.2.6"
2243
- source = "registry+https://github.com/rust-lang/crates.io-index"
2244
- checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
2245
- dependencies = [
2246
- "libc",
2247
- ]
2248
-
2249
- [[package]]
2250
- name = "hermit-abi"
2251
- version = "0.3.1"
2364
+ version = "0.3.3"
2252
2365
  source = "registry+https://github.com/rust-lang/crates.io-index"
2253
- checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2366
+ checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2254
2367
 
2255
2368
  [[package]]
2256
2369
  name = "hex"
@@ -2276,6 +2389,15 @@ dependencies = [
2276
2389
  "digest 0.10.7",
2277
2390
  ]
2278
2391
 
2392
+ [[package]]
2393
+ name = "home"
2394
+ version = "0.5.5"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
2397
+ dependencies = [
2398
+ "windows-sys",
2399
+ ]
2400
+
2279
2401
  [[package]]
2280
2402
  name = "hostname"
2281
2403
  version = "0.3.1"
@@ -2327,9 +2449,9 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2327
2449
 
2328
2450
  [[package]]
2329
2451
  name = "httpdate"
2330
- version = "1.0.2"
2452
+ version = "1.0.3"
2331
2453
  source = "registry+https://github.com/rust-lang/crates.io-index"
2332
- checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2454
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2333
2455
 
2334
2456
  [[package]]
2335
2457
  name = "humantime"
@@ -2339,9 +2461,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2339
2461
 
2340
2462
  [[package]]
2341
2463
  name = "hyper"
2342
- version = "0.14.26"
2464
+ version = "0.14.27"
2343
2465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2344
- checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
2466
+ checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2345
2467
  dependencies = [
2346
2468
  "bytes",
2347
2469
  "futures-channel",
@@ -2384,17 +2506,41 @@ dependencies = [
2384
2506
 
2385
2507
  [[package]]
2386
2508
  name = "hyper-rustls"
2387
- version = "0.24.0"
2509
+ version = "0.24.1"
2388
2510
  source = "registry+https://github.com/rust-lang/crates.io-index"
2389
- checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
2511
+ checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
2390
2512
  dependencies = [
2513
+ "futures-util",
2391
2514
  "http",
2392
- "hyper 0.14.26",
2515
+ "hyper 0.14.27",
2393
2516
  "rustls",
2394
2517
  "tokio",
2395
2518
  "tokio-rustls",
2396
2519
  ]
2397
2520
 
2521
+ [[package]]
2522
+ name = "iana-time-zone"
2523
+ version = "0.1.57"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
2526
+ dependencies = [
2527
+ "android_system_properties",
2528
+ "core-foundation-sys",
2529
+ "iana-time-zone-haiku",
2530
+ "js-sys",
2531
+ "wasm-bindgen",
2532
+ "windows",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "iana-time-zone-haiku"
2537
+ version = "0.1.2"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2540
+ dependencies = [
2541
+ "cc",
2542
+ ]
2543
+
2398
2544
  [[package]]
2399
2545
  name = "idna"
2400
2546
  version = "0.2.3"
@@ -2432,6 +2578,25 @@ version = "1.0.2"
2432
2578
  source = "registry+https://github.com/rust-lang/crates.io-index"
2433
2579
  checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
2434
2580
 
2581
+ [[package]]
2582
+ name = "image"
2583
+ version = "0.24.7"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711"
2586
+ dependencies = [
2587
+ "bytemuck",
2588
+ "byteorder",
2589
+ "color_quant",
2590
+ "exr",
2591
+ "gif",
2592
+ "jpeg-decoder",
2593
+ "num-rational",
2594
+ "num-traits",
2595
+ "png",
2596
+ "qoi",
2597
+ "tiff",
2598
+ ]
2599
+
2435
2600
  [[package]]
2436
2601
  name = "imagesize"
2437
2602
  version = "0.12.0"
@@ -2452,7 +2617,6 @@ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2452
2617
  dependencies = [
2453
2618
  "autocfg",
2454
2619
  "hashbrown 0.12.3",
2455
- "serde",
2456
2620
  ]
2457
2621
 
2458
2622
  [[package]]
@@ -2463,6 +2627,7 @@ checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
2463
2627
  dependencies = [
2464
2628
  "equivalent",
2465
2629
  "hashbrown 0.14.0",
2630
+ "serde",
2466
2631
  ]
2467
2632
 
2468
2633
  [[package]]
@@ -2501,58 +2666,46 @@ dependencies = [
2501
2666
  "generic-array 0.14.7",
2502
2667
  ]
2503
2668
 
2504
- [[package]]
2505
- name = "io-lifetimes"
2506
- version = "1.0.11"
2507
- source = "registry+https://github.com/rust-lang/crates.io-index"
2508
- checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2509
- dependencies = [
2510
- "hermit-abi 0.3.1",
2511
- "libc",
2512
- "windows-sys 0.48.0",
2513
- ]
2514
-
2515
2669
  [[package]]
2516
2670
  name = "ipconfig"
2517
2671
  version = "0.3.2"
2518
2672
  source = "registry+https://github.com/rust-lang/crates.io-index"
2519
2673
  checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
2520
2674
  dependencies = [
2521
- "socket2 0.5.3",
2675
+ "socket2 0.5.4",
2522
2676
  "widestring",
2523
- "windows-sys 0.48.0",
2677
+ "windows-sys",
2524
2678
  "winreg",
2525
2679
  ]
2526
2680
 
2527
2681
  [[package]]
2528
2682
  name = "ipnet"
2529
- version = "2.7.2"
2683
+ version = "2.8.0"
2530
2684
  source = "registry+https://github.com/rust-lang/crates.io-index"
2531
- checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2685
+ checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2532
2686
 
2533
2687
  [[package]]
2534
2688
  name = "is-macro"
2535
- version = "0.2.2"
2689
+ version = "0.3.0"
2536
2690
  source = "registry+https://github.com/rust-lang/crates.io-index"
2537
- checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20"
2691
+ checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e"
2538
2692
  dependencies = [
2539
2693
  "Inflector",
2540
- "pmutil 0.5.3",
2541
- "proc-macro2 1.0.66",
2542
- "quote 1.0.28",
2543
- "syn 1.0.109",
2694
+ "pmutil",
2695
+ "proc-macro2 1.0.67",
2696
+ "quote 1.0.33",
2697
+ "syn 2.0.37",
2544
2698
  ]
2545
2699
 
2546
2700
  [[package]]
2547
2701
  name = "is-terminal"
2548
- version = "0.4.7"
2702
+ version = "0.4.9"
2549
2703
  source = "registry+https://github.com/rust-lang/crates.io-index"
2550
- checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
2704
+ checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
2551
2705
  dependencies = [
2552
- "hermit-abi 0.3.1",
2553
- "io-lifetimes",
2554
- "rustix 0.37.20",
2555
- "windows-sys 0.48.0",
2706
+ "hermit-abi",
2707
+ "rustix",
2708
+ "windows-sys",
2556
2709
  ]
2557
2710
 
2558
2711
  [[package]]
@@ -2564,11 +2717,20 @@ dependencies = [
2564
2717
  "either",
2565
2718
  ]
2566
2719
 
2720
+ [[package]]
2721
+ name = "itertools"
2722
+ version = "0.11.0"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
2725
+ dependencies = [
2726
+ "either",
2727
+ ]
2728
+
2567
2729
  [[package]]
2568
2730
  name = "itoa"
2569
- version = "1.0.6"
2731
+ version = "1.0.9"
2570
2732
  source = "registry+https://github.com/rust-lang/crates.io-index"
2571
- checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2733
+ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2572
2734
 
2573
2735
  [[package]]
2574
2736
  name = "jobserver"
@@ -2599,9 +2761,9 @@ dependencies = [
2599
2761
 
2600
2762
  [[package]]
2601
2763
  name = "kqueue"
2602
- version = "1.0.7"
2764
+ version = "1.0.8"
2603
2765
  source = "registry+https://github.com/rust-lang/crates.io-index"
2604
- checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98"
2766
+ checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
2605
2767
  dependencies = [
2606
2768
  "kqueue-sys",
2607
2769
  "libc",
@@ -2609,9 +2771,9 @@ dependencies = [
2609
2771
 
2610
2772
  [[package]]
2611
2773
  name = "kqueue-sys"
2612
- version = "1.0.3"
2774
+ version = "1.0.4"
2613
2775
  source = "registry+https://github.com/rust-lang/crates.io-index"
2614
- checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
2776
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
2615
2777
  dependencies = [
2616
2778
  "bitflags 1.3.2",
2617
2779
  "libc",
@@ -2628,9 +2790,9 @@ dependencies = [
2628
2790
 
2629
2791
  [[package]]
2630
2792
  name = "lazy-regex"
2631
- version = "2.5.0"
2793
+ version = "3.0.2"
2632
2794
  source = "registry+https://github.com/rust-lang/crates.io-index"
2633
- checksum = "ff63c423c68ea6814b7da9e88ce585f793c87ddd9e78f646970891769c8235d4"
2795
+ checksum = "e723bd417b2df60a0f6a2b6825f297ea04b245d4ba52b5a22cb679bdf58b05fa"
2634
2796
  dependencies = [
2635
2797
  "lazy-regex-proc_macros",
2636
2798
  "once_cell",
@@ -2639,14 +2801,14 @@ dependencies = [
2639
2801
 
2640
2802
  [[package]]
2641
2803
  name = "lazy-regex-proc_macros"
2642
- version = "2.4.1"
2804
+ version = "3.0.1"
2643
2805
  source = "registry+https://github.com/rust-lang/crates.io-index"
2644
- checksum = "8edfc11b8f56ce85e207e62ea21557cfa09bb24a8f6b04ae181b086ff8611c22"
2806
+ checksum = "0f0a1d9139f0ee2e862e08a9c5d0ba0470f2aa21cd1e1aa1b1562f83116c725f"
2645
2807
  dependencies = [
2646
- "proc-macro2 1.0.66",
2647
- "quote 1.0.28",
2808
+ "proc-macro2 1.0.67",
2809
+ "quote 1.0.33",
2648
2810
  "regex",
2649
- "syn 1.0.109",
2811
+ "syn 2.0.37",
2650
2812
  ]
2651
2813
 
2652
2814
  [[package]]
@@ -2655,24 +2817,25 @@ version = "1.4.0"
2655
2817
  source = "registry+https://github.com/rust-lang/crates.io-index"
2656
2818
  checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2657
2819
  dependencies = [
2658
- "spin",
2820
+ "spin 0.5.2",
2659
2821
  ]
2660
2822
 
2661
2823
  [[package]]
2662
2824
  name = "lcms2"
2663
- version = "5.6.0"
2825
+ version = "6.0.0"
2664
2826
  source = "registry+https://github.com/rust-lang/crates.io-index"
2665
- checksum = "b9d50a4d00d909da0ec023ab34ea09bf3b3b79b5a36b3e0da3a305112edaf150"
2827
+ checksum = "897a7716b253bb5c58ac17a1a74ddda694f57fcf1c8a65799087783592c71092"
2666
2828
  dependencies = [
2829
+ "bytemuck",
2667
2830
  "foreign-types",
2668
2831
  "lcms2-sys",
2669
2832
  ]
2670
2833
 
2671
2834
  [[package]]
2672
2835
  name = "lcms2-sys"
2673
- version = "4.0.1"
2836
+ version = "4.0.3"
2674
2837
  source = "registry+https://github.com/rust-lang/crates.io-index"
2675
- checksum = "7abb8aac1a07fd8cdffaa25461a3873a7bf7164cd20b849d44a183a1348d682f"
2838
+ checksum = "137dae56197ab9e66729ff73e2942e26f16f9ddcd14a53295c35f53dcd067b58"
2676
2839
  dependencies = [
2677
2840
  "cc",
2678
2841
  "dunce",
@@ -2681,83 +2844,16 @@ dependencies = [
2681
2844
  ]
2682
2845
 
2683
2846
  [[package]]
2684
- name = "lexical"
2685
- version = "6.1.1"
2686
- source = "registry+https://github.com/rust-lang/crates.io-index"
2687
- checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
2688
- dependencies = [
2689
- "lexical-core",
2690
- ]
2691
-
2692
- [[package]]
2693
- name = "lexical-core"
2694
- version = "0.8.5"
2695
- source = "registry+https://github.com/rust-lang/crates.io-index"
2696
- checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
2697
- dependencies = [
2698
- "lexical-parse-float",
2699
- "lexical-parse-integer",
2700
- "lexical-util",
2701
- "lexical-write-float",
2702
- "lexical-write-integer",
2703
- ]
2704
-
2705
- [[package]]
2706
- name = "lexical-parse-float"
2707
- version = "0.8.5"
2708
- source = "registry+https://github.com/rust-lang/crates.io-index"
2709
- checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
2710
- dependencies = [
2711
- "lexical-parse-integer",
2712
- "lexical-util",
2713
- "static_assertions",
2714
- ]
2715
-
2716
- [[package]]
2717
- name = "lexical-parse-integer"
2718
- version = "0.8.6"
2719
- source = "registry+https://github.com/rust-lang/crates.io-index"
2720
- checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
2721
- dependencies = [
2722
- "lexical-util",
2723
- "static_assertions",
2724
- ]
2725
-
2726
- [[package]]
2727
- name = "lexical-util"
2728
- version = "0.8.5"
2729
- source = "registry+https://github.com/rust-lang/crates.io-index"
2730
- checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
2731
- dependencies = [
2732
- "static_assertions",
2733
- ]
2734
-
2735
- [[package]]
2736
- name = "lexical-write-float"
2737
- version = "0.8.5"
2738
- source = "registry+https://github.com/rust-lang/crates.io-index"
2739
- checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
2740
- dependencies = [
2741
- "lexical-util",
2742
- "lexical-write-integer",
2743
- "static_assertions",
2744
- ]
2745
-
2746
- [[package]]
2747
- name = "lexical-write-integer"
2748
- version = "0.8.5"
2847
+ name = "lebe"
2848
+ version = "0.5.2"
2749
2849
  source = "registry+https://github.com/rust-lang/crates.io-index"
2750
- checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
2751
- dependencies = [
2752
- "lexical-util",
2753
- "static_assertions",
2754
- ]
2850
+ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
2755
2851
 
2756
2852
  [[package]]
2757
2853
  name = "libc"
2758
- version = "0.2.146"
2854
+ version = "0.2.148"
2759
2855
  source = "registry+https://github.com/rust-lang/crates.io-index"
2760
- checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
2856
+ checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
2761
2857
 
2762
2858
  [[package]]
2763
2859
  name = "libffi"
@@ -2817,9 +2913,9 @@ dependencies = [
2817
2913
 
2818
2914
  [[package]]
2819
2915
  name = "libz-sys"
2820
- version = "1.1.9"
2916
+ version = "1.1.12"
2821
2917
  source = "registry+https://github.com/rust-lang/crates.io-index"
2822
- checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
2918
+ checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
2823
2919
  dependencies = [
2824
2920
  "cc",
2825
2921
  "libc",
@@ -2835,21 +2931,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2835
2931
 
2836
2932
  [[package]]
2837
2933
  name = "linux-raw-sys"
2838
- version = "0.3.8"
2839
- source = "registry+https://github.com/rust-lang/crates.io-index"
2840
- checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2841
-
2842
- [[package]]
2843
- name = "linux-raw-sys"
2844
- version = "0.4.5"
2934
+ version = "0.4.7"
2845
2935
  source = "registry+https://github.com/rust-lang/crates.io-index"
2846
- checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
2936
+ checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128"
2847
2937
 
2848
2938
  [[package]]
2849
2939
  name = "load_image"
2850
- version = "3.0.3"
2940
+ version = "3.1.2"
2851
2941
  source = "registry+https://github.com/rust-lang/crates.io-index"
2852
- checksum = "5f87f0f354b901237de8e6d4c0f050a3aa85b83a458fea9796f993a08a67c3cc"
2942
+ checksum = "4ce4ddf55fffd47e0764d74a58d0e80c32d93bfb149b0c707532e92c4f97d9d7"
2853
2943
  dependencies = [
2854
2944
  "bytemuck",
2855
2945
  "imgref",
@@ -2873,9 +2963,9 @@ dependencies = [
2873
2963
 
2874
2964
  [[package]]
2875
2965
  name = "lodepng"
2876
- version = "3.7.2"
2966
+ version = "3.8.1"
2877
2967
  source = "registry+https://github.com/rust-lang/crates.io-index"
2878
- checksum = "f0ad39f75bbaa4b10bb6f2316543632a8046a5bcf9c785488d79720b21f044f8"
2968
+ checksum = "e113c98c2de55d874de965268d29e41b5873b720f61434d187a10a158fb3f65e"
2879
2969
  dependencies = [
2880
2970
  "crc32fast",
2881
2971
  "fallible_collections",
@@ -2886,9 +2976,9 @@ dependencies = [
2886
2976
 
2887
2977
  [[package]]
2888
2978
  name = "log"
2889
- version = "0.4.19"
2979
+ version = "0.4.20"
2890
2980
  source = "registry+https://github.com/rust-lang/crates.io-index"
2891
- checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2981
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2892
2982
 
2893
2983
  [[package]]
2894
2984
  name = "lru-cache"
@@ -2899,6 +2989,12 @@ dependencies = [
2899
2989
  "linked-hash-map",
2900
2990
  ]
2901
2991
 
2992
+ [[package]]
2993
+ name = "lz-str"
2994
+ version = "0.2.1"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "39f3d72d77227090eed75ea331285a53726e78374a1f357ff5757702c23c70cc"
2997
+
2902
2998
  [[package]]
2903
2999
  name = "match_cfg"
2904
3000
  version = "0.1.0"
@@ -2931,9 +3027,9 @@ dependencies = [
2931
3027
 
2932
3028
  [[package]]
2933
3029
  name = "memchr"
2934
- version = "2.5.0"
3030
+ version = "2.6.3"
2935
3031
  source = "registry+https://github.com/rust-lang/crates.io-index"
2936
- checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
3032
+ checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
2937
3033
 
2938
3034
  [[package]]
2939
3035
  name = "memmap2"
@@ -2961,9 +3057,9 @@ checksum = "a64a92489e2744ce060c349162be1c5f33c6969234104dbd99ddb5feb08b8c15"
2961
3057
 
2962
3058
  [[package]]
2963
3059
  name = "memoffset"
2964
- version = "0.6.5"
3060
+ version = "0.7.1"
2965
3061
  source = "registry+https://github.com/rust-lang/crates.io-index"
2966
- checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
3062
+ checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
2967
3063
  dependencies = [
2968
3064
  "autocfg",
2969
3065
  ]
@@ -3008,7 +3104,7 @@ dependencies = [
3008
3104
  "libc",
3009
3105
  "log",
3010
3106
  "wasi 0.11.0+wasi-snapshot-preview1",
3011
- "windows-sys 0.48.0",
3107
+ "windows-sys",
3012
3108
  ]
3013
3109
 
3014
3110
  [[package]]
@@ -3017,6 +3113,12 @@ version = "0.4.3"
3017
3113
  source = "registry+https://github.com/rust-lang/crates.io-index"
3018
3114
  checksum = "4519a88847ba2d5ead3dc53f1060ec6a571de93f325d9c5c4968147382b1cbc3"
3019
3115
 
3116
+ [[package]]
3117
+ name = "multimap"
3118
+ version = "0.8.3"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
3121
+
3020
3122
  [[package]]
3021
3123
  name = "netif"
3022
3124
  version = "0.1.6"
@@ -3035,14 +3137,16 @@ checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
3035
3137
 
3036
3138
  [[package]]
3037
3139
  name = "nix"
3038
- version = "0.24.2"
3140
+ version = "0.26.2"
3039
3141
  source = "registry+https://github.com/rust-lang/crates.io-index"
3040
- checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
3142
+ checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
3041
3143
  dependencies = [
3042
3144
  "bitflags 1.3.2",
3043
3145
  "cfg-if",
3044
3146
  "libc",
3045
- "memoffset 0.6.5",
3147
+ "memoffset 0.7.1",
3148
+ "pin-utils",
3149
+ "static_assertions",
3046
3150
  ]
3047
3151
 
3048
3152
  [[package]]
@@ -3090,9 +3194,9 @@ dependencies = [
3090
3194
 
3091
3195
  [[package]]
3092
3196
  name = "num"
3093
- version = "0.4.0"
3197
+ version = "0.4.1"
3094
3198
  source = "registry+https://github.com/rust-lang/crates.io-index"
3095
- checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
3199
+ checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
3096
3200
  dependencies = [
3097
3201
  "num-bigint",
3098
3202
  "num-complex",
@@ -3104,9 +3208,9 @@ dependencies = [
3104
3208
 
3105
3209
  [[package]]
3106
3210
  name = "num-bigint"
3107
- version = "0.4.3"
3211
+ version = "0.4.4"
3108
3212
  source = "registry+https://github.com/rust-lang/crates.io-index"
3109
- checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
3213
+ checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
3110
3214
  dependencies = [
3111
3215
  "autocfg",
3112
3216
  "num-integer",
@@ -3117,9 +3221,9 @@ dependencies = [
3117
3221
 
3118
3222
  [[package]]
3119
3223
  name = "num-bigint-dig"
3120
- version = "0.8.2"
3224
+ version = "0.8.4"
3121
3225
  source = "registry+https://github.com/rust-lang/crates.io-index"
3122
- checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905"
3226
+ checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
3123
3227
  dependencies = [
3124
3228
  "byteorder",
3125
3229
  "lazy_static",
@@ -3135,9 +3239,9 @@ dependencies = [
3135
3239
 
3136
3240
  [[package]]
3137
3241
  name = "num-complex"
3138
- version = "0.4.3"
3242
+ version = "0.4.4"
3139
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
3140
- checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
3244
+ checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
3141
3245
  dependencies = [
3142
3246
  "num-traits",
3143
3247
  ]
@@ -3177,9 +3281,9 @@ dependencies = [
3177
3281
 
3178
3282
  [[package]]
3179
3283
  name = "num-traits"
3180
- version = "0.2.15"
3284
+ version = "0.2.16"
3181
3285
  source = "registry+https://github.com/rust-lang/crates.io-index"
3182
- checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
3286
+ checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
3183
3287
  dependencies = [
3184
3288
  "autocfg",
3185
3289
  "libm",
@@ -3187,19 +3291,19 @@ dependencies = [
3187
3291
 
3188
3292
  [[package]]
3189
3293
  name = "num_cpus"
3190
- version = "1.15.0"
3294
+ version = "1.16.0"
3191
3295
  source = "registry+https://github.com/rust-lang/crates.io-index"
3192
- checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
3296
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
3193
3297
  dependencies = [
3194
- "hermit-abi 0.2.6",
3298
+ "hermit-abi",
3195
3299
  "libc",
3196
3300
  ]
3197
3301
 
3198
3302
  [[package]]
3199
3303
  name = "object"
3200
- version = "0.32.0"
3304
+ version = "0.32.1"
3201
3305
  source = "registry+https://github.com/rust-lang/crates.io-index"
3202
- checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe"
3306
+ checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
3203
3307
  dependencies = [
3204
3308
  "memchr",
3205
3309
  ]
@@ -3258,7 +3362,7 @@ version = "0.13.2"
3258
3362
  source = "registry+https://github.com/rust-lang/crates.io-index"
3259
3363
  checksum = "30c06436d66652bc2f01ade021592c80a2aad401570a18aa18b82e440d2b9aa1"
3260
3364
  dependencies = [
3261
- "ecdsa 0.16.7",
3365
+ "ecdsa 0.16.8",
3262
3366
  "elliptic-curve 0.13.5",
3263
3367
  "primeorder",
3264
3368
  "sha2",
@@ -3281,7 +3385,7 @@ version = "0.13.2"
3281
3385
  source = "registry+https://github.com/rust-lang/crates.io-index"
3282
3386
  checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
3283
3387
  dependencies = [
3284
- "ecdsa 0.16.7",
3388
+ "ecdsa 0.16.8",
3285
3389
  "elliptic-curve 0.13.5",
3286
3390
  "primeorder",
3287
3391
  "sha2",
@@ -3304,7 +3408,7 @@ version = "0.13.0"
3304
3408
  source = "registry+https://github.com/rust-lang/crates.io-index"
3305
3409
  checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
3306
3410
  dependencies = [
3307
- "ecdsa 0.16.7",
3411
+ "ecdsa 0.16.8",
3308
3412
  "elliptic-curve 0.13.5",
3309
3413
  "primeorder",
3310
3414
  "sha2",
@@ -3358,14 +3462,25 @@ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
3358
3462
 
3359
3463
  [[package]]
3360
3464
  name = "pbkdf2"
3361
- version = "0.12.1"
3465
+ version = "0.12.2"
3362
3466
  source = "registry+https://github.com/rust-lang/crates.io-index"
3363
- checksum = "f0ca0b5a68607598bf3bad68f32227a8164f6254833f84eafaac409cd6746c31"
3467
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
3364
3468
  dependencies = [
3365
3469
  "digest 0.10.7",
3366
3470
  "hmac",
3367
3471
  ]
3368
3472
 
3473
+ [[package]]
3474
+ name = "pdf-writer"
3475
+ version = "0.8.1"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "9d77bc47c8968aa63f86a7e6693e270a6cbd1e3b784c364f1711a0ddecc71447"
3478
+ dependencies = [
3479
+ "bitflags 1.3.2",
3480
+ "itoa",
3481
+ "ryu",
3482
+ ]
3483
+
3369
3484
  [[package]]
3370
3485
  name = "pem-rfc7468"
3371
3486
  version = "0.6.0"
@@ -3390,6 +3505,16 @@ version = "2.3.0"
3390
3505
  source = "registry+https://github.com/rust-lang/crates.io-index"
3391
3506
  checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
3392
3507
 
3508
+ [[package]]
3509
+ name = "petgraph"
3510
+ version = "0.6.4"
3511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3512
+ checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
3513
+ dependencies = [
3514
+ "fixedbitset",
3515
+ "indexmap 2.0.0",
3516
+ ]
3517
+
3393
3518
  [[package]]
3394
3519
  name = "phf"
3395
3520
  version = "0.10.1"
@@ -3420,8 +3545,8 @@ dependencies = [
3420
3545
  "phf_generator",
3421
3546
  "phf_shared",
3422
3547
  "proc-macro-hack",
3423
- "proc-macro2 1.0.66",
3424
- "quote 1.0.28",
3548
+ "proc-macro2 1.0.67",
3549
+ "quote 1.0.33",
3425
3550
  "syn 1.0.109",
3426
3551
  ]
3427
3552
 
@@ -3431,7 +3556,7 @@ version = "0.10.0"
3431
3556
  source = "registry+https://github.com/rust-lang/crates.io-index"
3432
3557
  checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
3433
3558
  dependencies = [
3434
- "siphasher",
3559
+ "siphasher 0.3.11",
3435
3560
  ]
3436
3561
 
3437
3562
  [[package]]
@@ -3442,29 +3567,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
3442
3567
 
3443
3568
  [[package]]
3444
3569
  name = "pin-project"
3445
- version = "1.1.0"
3570
+ version = "1.1.3"
3446
3571
  source = "registry+https://github.com/rust-lang/crates.io-index"
3447
- checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead"
3572
+ checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
3448
3573
  dependencies = [
3449
3574
  "pin-project-internal",
3450
3575
  ]
3451
3576
 
3452
3577
  [[package]]
3453
3578
  name = "pin-project-internal"
3454
- version = "1.1.0"
3579
+ version = "1.1.3"
3455
3580
  source = "registry+https://github.com/rust-lang/crates.io-index"
3456
- checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07"
3581
+ checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
3457
3582
  dependencies = [
3458
- "proc-macro2 1.0.66",
3459
- "quote 1.0.28",
3460
- "syn 2.0.29",
3583
+ "proc-macro2 1.0.67",
3584
+ "quote 1.0.33",
3585
+ "syn 2.0.37",
3461
3586
  ]
3462
3587
 
3463
3588
  [[package]]
3464
3589
  name = "pin-project-lite"
3465
- version = "0.2.12"
3590
+ version = "0.2.13"
3466
3591
  source = "registry+https://github.com/rust-lang/crates.io-index"
3467
- checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05"
3592
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
3468
3593
 
3469
3594
  [[package]]
3470
3595
  name = "pin-utils"
@@ -3500,7 +3625,7 @@ version = "0.10.2"
3500
3625
  source = "registry+https://github.com/rust-lang/crates.io-index"
3501
3626
  checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
3502
3627
  dependencies = [
3503
- "der 0.7.6",
3628
+ "der 0.7.8",
3504
3629
  "spki 0.7.2",
3505
3630
  ]
3506
3631
 
@@ -3512,20 +3637,9 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
3512
3637
 
3513
3638
  [[package]]
3514
3639
  name = "platforms"
3515
- version = "3.0.2"
3640
+ version = "3.1.2"
3516
3641
  source = "registry+https://github.com/rust-lang/crates.io-index"
3517
- checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630"
3518
-
3519
- [[package]]
3520
- name = "pmutil"
3521
- version = "0.5.3"
3522
- source = "registry+https://github.com/rust-lang/crates.io-index"
3523
- checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004"
3524
- dependencies = [
3525
- "proc-macro2 1.0.66",
3526
- "quote 1.0.28",
3527
- "syn 1.0.109",
3528
- ]
3642
+ checksum = "4503fa043bf02cee09a9582e9554b4c6403b2ef55e4612e96561d294419429f8"
3529
3643
 
3530
3644
  [[package]]
3531
3645
  name = "pmutil"
@@ -3533,9 +3647,9 @@ version = "0.6.1"
3533
3647
  source = "registry+https://github.com/rust-lang/crates.io-index"
3534
3648
  checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6"
3535
3649
  dependencies = [
3536
- "proc-macro2 1.0.66",
3537
- "quote 1.0.28",
3538
- "syn 2.0.29",
3650
+ "proc-macro2 1.0.67",
3651
+ "quote 1.0.33",
3652
+ "syn 2.0.37",
3539
3653
  ]
3540
3654
 
3541
3655
  [[package]]
@@ -3577,14 +3691,14 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
3577
3691
 
3578
3692
  [[package]]
3579
3693
  name = "predicates"
3580
- version = "3.0.3"
3694
+ version = "3.0.4"
3581
3695
  source = "registry+https://github.com/rust-lang/crates.io-index"
3582
- checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9"
3696
+ checksum = "6dfc28575c2e3f19cb3c73b93af36460ae898d426eba6fc15b9bd2a5220758a0"
3583
3697
  dependencies = [
3584
3698
  "anstyle",
3585
3699
  "difflib",
3586
3700
  "float-cmp",
3587
- "itertools",
3701
+ "itertools 0.11.0",
3588
3702
  "normalize-line-endings",
3589
3703
  "predicates-core",
3590
3704
  "regex",
@@ -3606,6 +3720,16 @@ dependencies = [
3606
3720
  "termtree",
3607
3721
  ]
3608
3722
 
3723
+ [[package]]
3724
+ name = "prettyplease"
3725
+ version = "0.1.25"
3726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3727
+ checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
3728
+ dependencies = [
3729
+ "proc-macro2 1.0.67",
3730
+ "syn 1.0.109",
3731
+ ]
3732
+
3609
3733
  [[package]]
3610
3734
  name = "primeorder"
3611
3735
  version = "0.13.2"
@@ -3632,8 +3756,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
3756
  checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
3633
3757
  dependencies = [
3634
3758
  "proc-macro-error-attr",
3635
- "proc-macro2 1.0.66",
3636
- "quote 1.0.28",
3759
+ "proc-macro2 1.0.67",
3760
+ "quote 1.0.33",
3637
3761
  "syn 1.0.109",
3638
3762
  "version_check",
3639
3763
  ]
@@ -3642,35 +3766,89 @@ dependencies = [
3642
3766
  name = "proc-macro-error-attr"
3643
3767
  version = "1.0.4"
3644
3768
  source = "registry+https://github.com/rust-lang/crates.io-index"
3645
- checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
3769
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
3770
+ dependencies = [
3771
+ "proc-macro2 1.0.67",
3772
+ "quote 1.0.33",
3773
+ "version_check",
3774
+ ]
3775
+
3776
+ [[package]]
3777
+ name = "proc-macro-hack"
3778
+ version = "0.5.20+deprecated"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
3781
+
3782
+ [[package]]
3783
+ name = "proc-macro2"
3784
+ version = "0.4.30"
3785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3786
+ checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
3787
+ dependencies = [
3788
+ "unicode-xid 0.1.0",
3789
+ ]
3790
+
3791
+ [[package]]
3792
+ name = "proc-macro2"
3793
+ version = "1.0.67"
3794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3795
+ checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
3796
+ dependencies = [
3797
+ "unicode-ident",
3798
+ ]
3799
+
3800
+ [[package]]
3801
+ name = "prost"
3802
+ version = "0.11.9"
3803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3804
+ checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
3646
3805
  dependencies = [
3647
- "proc-macro2 1.0.66",
3648
- "quote 1.0.28",
3649
- "version_check",
3806
+ "bytes",
3807
+ "prost-derive",
3650
3808
  ]
3651
3809
 
3652
3810
  [[package]]
3653
- name = "proc-macro-hack"
3654
- version = "0.5.20+deprecated"
3811
+ name = "prost-build"
3812
+ version = "0.11.9"
3655
3813
  source = "registry+https://github.com/rust-lang/crates.io-index"
3656
- checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
3814
+ checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
3815
+ dependencies = [
3816
+ "bytes",
3817
+ "heck",
3818
+ "itertools 0.10.5",
3819
+ "lazy_static",
3820
+ "log",
3821
+ "multimap",
3822
+ "petgraph",
3823
+ "prettyplease",
3824
+ "prost",
3825
+ "prost-types",
3826
+ "regex",
3827
+ "syn 1.0.109",
3828
+ "tempfile",
3829
+ "which",
3830
+ ]
3657
3831
 
3658
3832
  [[package]]
3659
- name = "proc-macro2"
3660
- version = "0.4.30"
3833
+ name = "prost-derive"
3834
+ version = "0.11.9"
3661
3835
  source = "registry+https://github.com/rust-lang/crates.io-index"
3662
- checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
3836
+ checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
3663
3837
  dependencies = [
3664
- "unicode-xid 0.1.0",
3838
+ "anyhow",
3839
+ "itertools 0.10.5",
3840
+ "proc-macro2 1.0.67",
3841
+ "quote 1.0.33",
3842
+ "syn 1.0.109",
3665
3843
  ]
3666
3844
 
3667
3845
  [[package]]
3668
- name = "proc-macro2"
3669
- version = "1.0.66"
3846
+ name = "prost-types"
3847
+ version = "0.11.9"
3670
3848
  source = "registry+https://github.com/rust-lang/crates.io-index"
3671
- checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
3849
+ checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
3672
3850
  dependencies = [
3673
- "unicode-ident",
3851
+ "prost",
3674
3852
  ]
3675
3853
 
3676
3854
  [[package]]
@@ -3684,9 +3862,9 @@ dependencies = [
3684
3862
 
3685
3863
  [[package]]
3686
3864
  name = "pyo3"
3687
- version = "0.19.0"
3865
+ version = "0.19.2"
3688
3866
  source = "registry+https://github.com/rust-lang/crates.io-index"
3689
- checksum = "cffef52f74ec3b1a1baf295d9b8fcc3070327aefc39a6d00656b13c1d0b8885c"
3867
+ checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38"
3690
3868
  dependencies = [
3691
3869
  "anyhow",
3692
3870
  "cfg-if",
@@ -3702,9 +3880,9 @@ dependencies = [
3702
3880
 
3703
3881
  [[package]]
3704
3882
  name = "pyo3-build-config"
3705
- version = "0.19.0"
3883
+ version = "0.19.2"
3706
3884
  source = "registry+https://github.com/rust-lang/crates.io-index"
3707
- checksum = "713eccf888fb05f1a96eb78c0dbc51907fee42b3377272dc902eb38985f418d5"
3885
+ checksum = "076c73d0bc438f7a4ef6fdd0c3bb4732149136abd952b110ac93e4edb13a6ba5"
3708
3886
  dependencies = [
3709
3887
  "once_cell",
3710
3888
  "target-lexicon",
@@ -3712,9 +3890,9 @@ dependencies = [
3712
3890
 
3713
3891
  [[package]]
3714
3892
  name = "pyo3-ffi"
3715
- version = "0.19.0"
3893
+ version = "0.19.2"
3716
3894
  source = "registry+https://github.com/rust-lang/crates.io-index"
3717
- checksum = "5b2ecbdcfb01cbbf56e179ce969a048fd7305a66d4cdf3303e0da09d69afe4c3"
3895
+ checksum = "e53cee42e77ebe256066ba8aa77eff722b3bb91f3419177cf4cd0f304d3284d9"
3718
3896
  dependencies = [
3719
3897
  "libc",
3720
3898
  "pyo3-build-config",
@@ -3722,24 +3900,24 @@ dependencies = [
3722
3900
 
3723
3901
  [[package]]
3724
3902
  name = "pyo3-macros"
3725
- version = "0.19.0"
3903
+ version = "0.19.2"
3726
3904
  source = "registry+https://github.com/rust-lang/crates.io-index"
3727
- checksum = "b78fdc0899f2ea781c463679b20cb08af9247febc8d052de941951024cd8aea0"
3905
+ checksum = "dfeb4c99597e136528c6dd7d5e3de5434d1ceaf487436a3f03b2d56b6fc9efd1"
3728
3906
  dependencies = [
3729
- "proc-macro2 1.0.66",
3907
+ "proc-macro2 1.0.67",
3730
3908
  "pyo3-macros-backend",
3731
- "quote 1.0.28",
3909
+ "quote 1.0.33",
3732
3910
  "syn 1.0.109",
3733
3911
  ]
3734
3912
 
3735
3913
  [[package]]
3736
3914
  name = "pyo3-macros-backend"
3737
- version = "0.19.0"
3915
+ version = "0.19.2"
3738
3916
  source = "registry+https://github.com/rust-lang/crates.io-index"
3739
- checksum = "60da7b84f1227c3e2fe7593505de274dcf4c8928b4e0a1c23d551a14e4e80a0f"
3917
+ checksum = "947dc12175c254889edc0c02e399476c2f652b4b9ebd123aa655c224de259536"
3740
3918
  dependencies = [
3741
- "proc-macro2 1.0.66",
3742
- "quote 1.0.28",
3919
+ "proc-macro2 1.0.67",
3920
+ "quote 1.0.33",
3743
3921
  "syn 1.0.109",
3744
3922
  ]
3745
3923
 
@@ -3753,6 +3931,15 @@ dependencies = [
3753
3931
  "serde",
3754
3932
  ]
3755
3933
 
3934
+ [[package]]
3935
+ name = "qoi"
3936
+ version = "0.4.1"
3937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3938
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
3939
+ dependencies = [
3940
+ "bytemuck",
3941
+ ]
3942
+
3756
3943
  [[package]]
3757
3944
  name = "quick-error"
3758
3945
  version = "1.2.3"
@@ -3776,11 +3963,11 @@ dependencies = [
3776
3963
 
3777
3964
  [[package]]
3778
3965
  name = "quote"
3779
- version = "1.0.28"
3966
+ version = "1.0.33"
3780
3967
  source = "registry+https://github.com/rust-lang/crates.io-index"
3781
- checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
3968
+ checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
3782
3969
  dependencies = [
3783
- "proc-macro2 1.0.66",
3970
+ "proc-macro2 1.0.67",
3784
3971
  ]
3785
3972
 
3786
3973
  [[package]]
@@ -3824,9 +4011,9 @@ dependencies = [
3824
4011
 
3825
4012
  [[package]]
3826
4013
  name = "rayon"
3827
- version = "1.7.0"
4014
+ version = "1.8.0"
3828
4015
  source = "registry+https://github.com/rust-lang/crates.io-index"
3829
- checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
4016
+ checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
3830
4017
  dependencies = [
3831
4018
  "either",
3832
4019
  "rayon-core",
@@ -3834,14 +4021,12 @@ dependencies = [
3834
4021
 
3835
4022
  [[package]]
3836
4023
  name = "rayon-core"
3837
- version = "1.11.0"
4024
+ version = "1.12.0"
3838
4025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3839
- checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
4026
+ checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
3840
4027
  dependencies = [
3841
- "crossbeam-channel",
3842
4028
  "crossbeam-deque",
3843
4029
  "crossbeam-utils",
3844
- "num_cpus",
3845
4030
  ]
3846
4031
 
3847
4032
  [[package]]
@@ -3881,26 +4066,38 @@ dependencies = [
3881
4066
 
3882
4067
  [[package]]
3883
4068
  name = "regex"
3884
- version = "1.8.4"
4069
+ version = "1.9.5"
3885
4070
  source = "registry+https://github.com/rust-lang/crates.io-index"
3886
- checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
4071
+ checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47"
3887
4072
  dependencies = [
3888
4073
  "aho-corasick",
3889
4074
  "memchr",
4075
+ "regex-automata",
3890
4076
  "regex-syntax",
3891
4077
  ]
3892
4078
 
3893
4079
  [[package]]
3894
4080
  name = "regex-automata"
3895
- version = "0.1.10"
4081
+ version = "0.3.8"
3896
4082
  source = "registry+https://github.com/rust-lang/crates.io-index"
3897
- checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
4083
+ checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795"
4084
+ dependencies = [
4085
+ "aho-corasick",
4086
+ "memchr",
4087
+ "regex-syntax",
4088
+ ]
3898
4089
 
3899
4090
  [[package]]
3900
4091
  name = "regex-syntax"
3901
- version = "0.7.2"
4092
+ version = "0.7.5"
4093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4094
+ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
4095
+
4096
+ [[package]]
4097
+ name = "relative-path"
4098
+ version = "1.9.0"
3902
4099
  source = "registry+https://github.com/rust-lang/crates.io-index"
3903
- checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
4100
+ checksum = "c707298afce11da2efef2f600116fa93ffa7a032b5d7b628aa17711ec81383ca"
3904
4101
 
3905
4102
  [[package]]
3906
4103
  name = "reqwest"
@@ -3909,7 +4106,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3909
4106
  checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1"
3910
4107
  dependencies = [
3911
4108
  "async-compression",
3912
- "base64 0.21.2",
4109
+ "base64 0.21.4",
3913
4110
  "bytes",
3914
4111
  "encoding_rs",
3915
4112
  "futures-core",
@@ -3917,7 +4114,7 @@ dependencies = [
3917
4114
  "h2",
3918
4115
  "http",
3919
4116
  "http-body 0.4.5",
3920
- "hyper 0.14.26",
4117
+ "hyper 0.14.27",
3921
4118
  "hyper-rustls",
3922
4119
  "ipnet",
3923
4120
  "js-sys",
@@ -3941,7 +4138,7 @@ dependencies = [
3941
4138
  "wasm-bindgen-futures",
3942
4139
  "wasm-streams",
3943
4140
  "web-sys",
3944
- "webpki-roots 0.25.2",
4141
+ "webpki-roots",
3945
4142
  "winreg",
3946
4143
  ]
3947
4144
 
@@ -4020,7 +4217,7 @@ dependencies = [
4020
4217
  "cc",
4021
4218
  "libc",
4022
4219
  "once_cell",
4023
- "spin",
4220
+ "spin 0.5.2",
4024
4221
  "untrusted",
4025
4222
  "web-sys",
4026
4223
  "winapi",
@@ -4067,9 +4264,9 @@ dependencies = [
4067
4264
 
4068
4265
  [[package]]
4069
4266
  name = "rstest"
4070
- version = "0.17.0"
4267
+ version = "0.18.2"
4071
4268
  source = "registry+https://github.com/rust-lang/crates.io-index"
4072
- checksum = "de1bb486a691878cd320c2f0d319ba91eeaa2e894066d8b5f8f117c000e9d962"
4269
+ checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
4073
4270
  dependencies = [
4074
4271
  "futures",
4075
4272
  "futures-timer",
@@ -4079,15 +4276,18 @@ dependencies = [
4079
4276
 
4080
4277
  [[package]]
4081
4278
  name = "rstest_macros"
4082
- version = "0.17.0"
4279
+ version = "0.18.2"
4083
4280
  source = "registry+https://github.com/rust-lang/crates.io-index"
4084
- checksum = "290ca1a1c8ca7edb7c3283bd44dc35dd54fdec6253a3912e201ba1072018fca8"
4281
+ checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
4085
4282
  dependencies = [
4086
4283
  "cfg-if",
4087
- "proc-macro2 1.0.66",
4088
- "quote 1.0.28",
4284
+ "glob",
4285
+ "proc-macro2 1.0.67",
4286
+ "quote 1.0.33",
4287
+ "regex",
4288
+ "relative-path",
4089
4289
  "rustc_version 0.4.0",
4090
- "syn 1.0.109",
4290
+ "syn 2.0.37",
4091
4291
  "unicode-ident",
4092
4292
  ]
4093
4293
 
@@ -4132,7 +4332,7 @@ version = "0.4.0"
4132
4332
  source = "registry+https://github.com/rust-lang/crates.io-index"
4133
4333
  checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
4134
4334
  dependencies = [
4135
- "semver 1.0.17",
4335
+ "semver 1.0.18",
4136
4336
  ]
4137
4337
 
4138
4338
  [[package]]
@@ -4146,36 +4346,22 @@ dependencies = [
4146
4346
 
4147
4347
  [[package]]
4148
4348
  name = "rustix"
4149
- version = "0.37.20"
4150
- source = "registry+https://github.com/rust-lang/crates.io-index"
4151
- checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0"
4152
- dependencies = [
4153
- "bitflags 1.3.2",
4154
- "errno 0.3.1",
4155
- "io-lifetimes",
4156
- "libc",
4157
- "linux-raw-sys 0.3.8",
4158
- "windows-sys 0.48.0",
4159
- ]
4160
-
4161
- [[package]]
4162
- name = "rustix"
4163
- version = "0.38.3"
4349
+ version = "0.38.14"
4164
4350
  source = "registry+https://github.com/rust-lang/crates.io-index"
4165
- checksum = "ac5ffa1efe7548069688cd7028f32591853cd7b5b756d41bcffd2353e4fc75b4"
4351
+ checksum = "747c788e9ce8e92b12cd485c49ddf90723550b654b32508f979b71a7b1ecda4f"
4166
4352
  dependencies = [
4167
4353
  "bitflags 2.4.0",
4168
- "errno 0.3.1",
4354
+ "errno 0.3.3",
4169
4355
  "libc",
4170
- "linux-raw-sys 0.4.5",
4171
- "windows-sys 0.48.0",
4356
+ "linux-raw-sys",
4357
+ "windows-sys",
4172
4358
  ]
4173
4359
 
4174
4360
  [[package]]
4175
4361
  name = "rustls"
4176
- version = "0.21.6"
4362
+ version = "0.21.7"
4177
4363
  source = "registry+https://github.com/rust-lang/crates.io-index"
4178
- checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb"
4364
+ checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
4179
4365
  dependencies = [
4180
4366
  "log",
4181
4367
  "ring",
@@ -4197,18 +4383,18 @@ dependencies = [
4197
4383
 
4198
4384
  [[package]]
4199
4385
  name = "rustls-pemfile"
4200
- version = "1.0.2"
4386
+ version = "1.0.3"
4201
4387
  source = "registry+https://github.com/rust-lang/crates.io-index"
4202
- checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
4388
+ checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
4203
4389
  dependencies = [
4204
- "base64 0.21.2",
4390
+ "base64 0.21.4",
4205
4391
  ]
4206
4392
 
4207
4393
  [[package]]
4208
4394
  name = "rustls-webpki"
4209
- version = "0.101.4"
4395
+ version = "0.101.6"
4210
4396
  source = "registry+https://github.com/rust-lang/crates.io-index"
4211
- checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d"
4397
+ checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe"
4212
4398
  dependencies = [
4213
4399
  "ring",
4214
4400
  "untrusted",
@@ -4238,9 +4424,9 @@ dependencies = [
4238
4424
 
4239
4425
  [[package]]
4240
4426
  name = "ryu"
4241
- version = "1.0.13"
4427
+ version = "1.0.15"
4242
4428
  source = "registry+https://github.com/rust-lang/crates.io-index"
4243
- checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
4429
+ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
4244
4430
 
4245
4431
  [[package]]
4246
4432
  name = "salsa20"
@@ -4262,11 +4448,11 @@ dependencies = [
4262
4448
 
4263
4449
  [[package]]
4264
4450
  name = "schannel"
4265
- version = "0.1.21"
4451
+ version = "0.1.22"
4266
4452
  source = "registry+https://github.com/rust-lang/crates.io-index"
4267
- checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
4453
+ checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
4268
4454
  dependencies = [
4269
- "windows-sys 0.42.0",
4455
+ "windows-sys",
4270
4456
  ]
4271
4457
 
4272
4458
  [[package]]
@@ -4277,9 +4463,9 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
4277
4463
 
4278
4464
  [[package]]
4279
4465
  name = "scopeguard"
4280
- version = "1.1.0"
4466
+ version = "1.2.0"
4281
4467
  source = "registry+https://github.com/rust-lang/crates.io-index"
4282
- checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
4468
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
4283
4469
 
4284
4470
  [[package]]
4285
4471
  name = "scrypt"
@@ -4319,12 +4505,12 @@ dependencies = [
4319
4505
 
4320
4506
  [[package]]
4321
4507
  name = "sec1"
4322
- version = "0.7.2"
4508
+ version = "0.7.3"
4323
4509
  source = "registry+https://github.com/rust-lang/crates.io-index"
4324
- checksum = "f0aec48e813d6b90b15f0b8948af3c63483992dee44c03e9930b3eebdabe046e"
4510
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
4325
4511
  dependencies = [
4326
4512
  "base16ct 0.2.0",
4327
- "der 0.7.6",
4513
+ "der 0.7.8",
4328
4514
  "generic-array 0.14.7",
4329
4515
  "pkcs8 0.10.2",
4330
4516
  "subtle",
@@ -4352,9 +4538,9 @@ dependencies = [
4352
4538
 
4353
4539
  [[package]]
4354
4540
  name = "security-framework"
4355
- version = "2.9.1"
4541
+ version = "2.9.2"
4356
4542
  source = "registry+https://github.com/rust-lang/crates.io-index"
4357
- checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
4543
+ checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
4358
4544
  dependencies = [
4359
4545
  "bitflags 1.3.2",
4360
4546
  "core-foundation",
@@ -4365,9 +4551,9 @@ dependencies = [
4365
4551
 
4366
4552
  [[package]]
4367
4553
  name = "security-framework-sys"
4368
- version = "2.9.0"
4554
+ version = "2.9.1"
4369
4555
  source = "registry+https://github.com/rust-lang/crates.io-index"
4370
- checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
4556
+ checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
4371
4557
  dependencies = [
4372
4558
  "core-foundation-sys",
4373
4559
  "libc",
@@ -4384,9 +4570,9 @@ dependencies = [
4384
4570
 
4385
4571
  [[package]]
4386
4572
  name = "semver"
4387
- version = "1.0.17"
4573
+ version = "1.0.18"
4388
4574
  source = "registry+https://github.com/rust-lang/crates.io-index"
4389
- checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
4575
+ checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
4390
4576
 
4391
4577
  [[package]]
4392
4578
  name = "semver-parser"
@@ -4396,9 +4582,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
4396
4582
 
4397
4583
  [[package]]
4398
4584
  name = "serde"
4399
- version = "1.0.186"
4585
+ version = "1.0.188"
4400
4586
  source = "registry+https://github.com/rust-lang/crates.io-index"
4401
- checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1"
4587
+ checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
4402
4588
  dependencies = [
4403
4589
  "serde_derive",
4404
4590
  ]
@@ -4415,29 +4601,29 @@ dependencies = [
4415
4601
 
4416
4602
  [[package]]
4417
4603
  name = "serde_bytes"
4418
- version = "0.11.9"
4604
+ version = "0.11.12"
4419
4605
  source = "registry+https://github.com/rust-lang/crates.io-index"
4420
- checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294"
4606
+ checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff"
4421
4607
  dependencies = [
4422
4608
  "serde",
4423
4609
  ]
4424
4610
 
4425
4611
  [[package]]
4426
4612
  name = "serde_derive"
4427
- version = "1.0.186"
4613
+ version = "1.0.188"
4428
4614
  source = "registry+https://github.com/rust-lang/crates.io-index"
4429
- checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670"
4615
+ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
4430
4616
  dependencies = [
4431
- "proc-macro2 1.0.66",
4432
- "quote 1.0.28",
4433
- "syn 2.0.29",
4617
+ "proc-macro2 1.0.67",
4618
+ "quote 1.0.33",
4619
+ "syn 2.0.37",
4434
4620
  ]
4435
4621
 
4436
4622
  [[package]]
4437
4623
  name = "serde_json"
4438
- version = "1.0.105"
4624
+ version = "1.0.107"
4439
4625
  source = "registry+https://github.com/rust-lang/crates.io-index"
4440
- checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360"
4626
+ checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
4441
4627
  dependencies = [
4442
4628
  "indexmap 2.0.0",
4443
4629
  "itoa",
@@ -4459,9 +4645,9 @@ dependencies = [
4459
4645
 
4460
4646
  [[package]]
4461
4647
  name = "serde_v8"
4462
- version = "0.111.0"
4648
+ version = "0.123.0"
4463
4649
  source = "registry+https://github.com/rust-lang/crates.io-index"
4464
- checksum = "309b3060a9627882514f3a3ce3cc08ceb347a76aeeadc58f138c3f189cf88b71"
4650
+ checksum = "cc3e1c4d2b20f6983e86077c66b25b8d768f2e102e09659af2af034ac47ae709"
4465
4651
  dependencies = [
4466
4652
  "bytes",
4467
4653
  "derive_more",
@@ -4486,9 +4672,9 @@ dependencies = [
4486
4672
 
4487
4673
  [[package]]
4488
4674
  name = "sha1"
4489
- version = "0.10.5"
4675
+ version = "0.10.6"
4490
4676
  source = "registry+https://github.com/rust-lang/crates.io-index"
4491
- checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
4677
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
4492
4678
  dependencies = [
4493
4679
  "cfg-if",
4494
4680
  "cpufeatures",
@@ -4567,15 +4753,21 @@ dependencies = [
4567
4753
 
4568
4754
  [[package]]
4569
4755
  name = "siphasher"
4570
- version = "0.3.10"
4756
+ version = "0.3.11"
4757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4758
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
4759
+
4760
+ [[package]]
4761
+ name = "siphasher"
4762
+ version = "1.0.0"
4571
4763
  source = "registry+https://github.com/rust-lang/crates.io-index"
4572
- checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
4764
+ checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe"
4573
4765
 
4574
4766
  [[package]]
4575
4767
  name = "slab"
4576
- version = "0.4.8"
4768
+ version = "0.4.9"
4577
4769
  source = "registry+https://github.com/rust-lang/crates.io-index"
4578
- checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
4770
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
4579
4771
  dependencies = [
4580
4772
  "autocfg",
4581
4773
  ]
@@ -4591,9 +4783,9 @@ dependencies = [
4591
4783
 
4592
4784
  [[package]]
4593
4785
  name = "smallvec"
4594
- version = "1.10.0"
4786
+ version = "1.11.1"
4595
4787
  source = "registry+https://github.com/rust-lang/crates.io-index"
4596
- checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
4788
+ checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
4597
4789
 
4598
4790
  [[package]]
4599
4791
  name = "smartstring"
@@ -4618,21 +4810,38 @@ dependencies = [
4618
4810
 
4619
4811
  [[package]]
4620
4812
  name = "socket2"
4621
- version = "0.5.3"
4813
+ version = "0.5.4"
4622
4814
  source = "registry+https://github.com/rust-lang/crates.io-index"
4623
- checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
4815
+ checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e"
4624
4816
  dependencies = [
4625
4817
  "libc",
4626
- "windows-sys 0.48.0",
4818
+ "windows-sys",
4819
+ ]
4820
+
4821
+ [[package]]
4822
+ name = "sourcemap"
4823
+ version = "6.4.1"
4824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4825
+ checksum = "e4cbf65ca7dc576cf50e21f8d0712d96d4fcfd797389744b7b222a85cdf5bd90"
4826
+ dependencies = [
4827
+ "data-encoding",
4828
+ "debugid",
4829
+ "if_chain",
4830
+ "rustc_version 0.2.3",
4831
+ "serde",
4832
+ "serde_json",
4833
+ "unicode-id",
4834
+ "url",
4627
4835
  ]
4628
4836
 
4629
4837
  [[package]]
4630
4838
  name = "sourcemap"
4631
- version = "6.2.3"
4839
+ version = "7.0.0"
4632
4840
  source = "registry+https://github.com/rust-lang/crates.io-index"
4633
- checksum = "eed16231c92d0a6f0388f56e0ab2be24ecff1173f8e22f0ea5e074d0525631cb"
4841
+ checksum = "dbecc42a2b6131acc3bf9a25c9fe4161dba438eb52131bba83c5d781b5b70be3"
4634
4842
  dependencies = [
4635
4843
  "data-encoding",
4844
+ "debugid",
4636
4845
  "if_chain",
4637
4846
  "rustc_version 0.2.3",
4638
4847
  "serde",
@@ -4647,6 +4856,15 @@ version = "0.5.2"
4647
4856
  source = "registry+https://github.com/rust-lang/crates.io-index"
4648
4857
  checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
4649
4858
 
4859
+ [[package]]
4860
+ name = "spin"
4861
+ version = "0.9.8"
4862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4863
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
4864
+ dependencies = [
4865
+ "lock_api",
4866
+ ]
4867
+
4650
4868
  [[package]]
4651
4869
  name = "spki"
4652
4870
  version = "0.6.0"
@@ -4664,7 +4882,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4664
4882
  checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
4665
4883
  dependencies = [
4666
4884
  "base64ct",
4667
- "der 0.7.6",
4885
+ "der 0.7.8",
4668
4886
  ]
4669
4887
 
4670
4888
  [[package]]
@@ -4723,21 +4941,21 @@ checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
4723
4941
  dependencies = [
4724
4942
  "phf_generator",
4725
4943
  "phf_shared",
4726
- "proc-macro2 1.0.66",
4727
- "quote 1.0.28",
4944
+ "proc-macro2 1.0.67",
4945
+ "quote 1.0.33",
4728
4946
  ]
4729
4947
 
4730
4948
  [[package]]
4731
4949
  name = "string_enum"
4732
- version = "0.4.0"
4950
+ version = "0.4.1"
4733
4951
  source = "registry+https://github.com/rust-lang/crates.io-index"
4734
- checksum = "0090512bdfee4b56d82480d66c0fd8a6f53f0fe0f97e075e949b252acdd482e0"
4952
+ checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252"
4735
4953
  dependencies = [
4736
- "pmutil 0.5.3",
4737
- "proc-macro2 1.0.66",
4738
- "quote 1.0.28",
4954
+ "pmutil",
4955
+ "proc-macro2 1.0.67",
4956
+ "quote 1.0.33",
4739
4957
  "swc_macros_common",
4740
- "syn 1.0.109",
4958
+ "syn 2.0.37",
4741
4959
  ]
4742
4960
 
4743
4961
  [[package]]
@@ -4762,18 +4980,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4762
4980
  checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059"
4763
4981
  dependencies = [
4764
4982
  "heck",
4765
- "proc-macro2 1.0.66",
4766
- "quote 1.0.28",
4983
+ "proc-macro2 1.0.67",
4984
+ "quote 1.0.33",
4767
4985
  "rustversion",
4768
- "syn 2.0.29",
4986
+ "syn 2.0.37",
4769
4987
  ]
4770
4988
 
4989
+ [[package]]
4990
+ name = "subsetter"
4991
+ version = "0.1.1"
4992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4993
+ checksum = "09eab8a83bff89ba2200bd4c59be45c7c787f988431b936099a5a266c957f2f9"
4994
+
4771
4995
  [[package]]
4772
4996
  name = "subtle"
4773
4997
  version = "2.5.0"
4774
4998
  source = "registry+https://github.com/rust-lang/crates.io-index"
4775
4999
  checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
4776
5000
 
5001
+ [[package]]
5002
+ name = "svg2pdf"
5003
+ version = "0.7.1"
5004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5005
+ checksum = "f2adc7de163bd53f323850e65269280b2a66ffceee291cb8eca34f2eabc3acad"
5006
+ dependencies = [
5007
+ "image",
5008
+ "miniz_oxide",
5009
+ "pdf-writer",
5010
+ "usvg",
5011
+ ]
5012
+
4777
5013
  [[package]]
4778
5014
  name = "svgtypes"
4779
5015
  version = "0.11.0"
@@ -4781,14 +5017,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4781
5017
  checksum = "ed4b0611e7f3277f68c0fa18e385d9e2d26923691379690039548f867cef02a7"
4782
5018
  dependencies = [
4783
5019
  "kurbo",
4784
- "siphasher",
5020
+ "siphasher 0.3.11",
4785
5021
  ]
4786
5022
 
4787
5023
  [[package]]
4788
5024
  name = "swc_atoms"
4789
- version = "0.5.6"
5025
+ version = "0.5.9"
4790
5026
  source = "registry+https://github.com/rust-lang/crates.io-index"
4791
- checksum = "93d0307dc4bfd107d49c7528350c372758cfca94fb503629b9a056e6a1572860"
5027
+ checksum = "9f54563d7dcba626d4acfe14ed12def7ecc28e004debe3ecd2c3ee07cc47e449"
4792
5028
  dependencies = [
4793
5029
  "once_cell",
4794
5030
  "rustc-hash",
@@ -4800,11 +5036,10 @@ dependencies = [
4800
5036
 
4801
5037
  [[package]]
4802
5038
  name = "swc_common"
4803
- version = "0.31.12"
5039
+ version = "0.32.0"
4804
5040
  source = "registry+https://github.com/rust-lang/crates.io-index"
4805
- checksum = "19c774005489d2907fb67909cf42af926e72edee1366512777c605ba2ef19c94"
5041
+ checksum = "39cb7fcd56655c8ae7dcf2344f0be6cbff4d9c7cb401fe3ec8e56e1de8dfe582"
4806
5042
  dependencies = [
4807
- "ahash 0.7.6",
4808
5043
  "ast_node",
4809
5044
  "better_scoped_tls",
4810
5045
  "cfg-if",
@@ -4815,8 +5050,8 @@ dependencies = [
4815
5050
  "once_cell",
4816
5051
  "rustc-hash",
4817
5052
  "serde",
4818
- "siphasher",
4819
- "sourcemap",
5053
+ "siphasher 0.3.11",
5054
+ "sourcemap 6.4.1",
4820
5055
  "string_cache",
4821
5056
  "swc_atoms",
4822
5057
  "swc_eq_ignore_macros",
@@ -4828,9 +5063,9 @@ dependencies = [
4828
5063
 
4829
5064
  [[package]]
4830
5065
  name = "swc_config"
4831
- version = "0.1.5"
5066
+ version = "0.1.7"
4832
5067
  source = "registry+https://github.com/rust-lang/crates.io-index"
4833
- checksum = "89c8fc2c12bb1634c7c32fc3c9b6b963ad8f034cc62c4ecddcf215dc4f6f959d"
5068
+ checksum = "9ba1c7a40d38f9dd4e9a046975d3faf95af42937b34b2b963be4d8f01239584b"
4834
5069
  dependencies = [
4835
5070
  "indexmap 1.9.3",
4836
5071
  "serde",
@@ -4840,22 +5075,22 @@ dependencies = [
4840
5075
 
4841
5076
  [[package]]
4842
5077
  name = "swc_config_macro"
4843
- version = "0.1.1"
5078
+ version = "0.1.2"
4844
5079
  source = "registry+https://github.com/rust-lang/crates.io-index"
4845
- checksum = "7dadb9998d4f5fc36ef558ed5a092579441579ee8c6fcce84a5228cca9df4004"
5080
+ checksum = "e5b5aaca9a0082be4515f0fbbecc191bf5829cd25b5b9c0a2810f6a2bb0d6829"
4846
5081
  dependencies = [
4847
- "pmutil 0.5.3",
4848
- "proc-macro2 1.0.66",
4849
- "quote 1.0.28",
5082
+ "pmutil",
5083
+ "proc-macro2 1.0.67",
5084
+ "quote 1.0.33",
4850
5085
  "swc_macros_common",
4851
- "syn 1.0.109",
5086
+ "syn 2.0.37",
4852
5087
  ]
4853
5088
 
4854
5089
  [[package]]
4855
5090
  name = "swc_ecma_ast"
4856
- version = "0.104.5"
5091
+ version = "0.109.0"
4857
5092
  source = "registry+https://github.com/rust-lang/crates.io-index"
4858
- checksum = "b5cf9dd351d0c285dcd36535267953a18995d4dda0cbe34ac9d1df61aa415b26"
5093
+ checksum = "7bc2286cedd688a68f214faa1c19bb5cceab7c9c54d0cbe3273e4c1704e38f69"
4859
5094
  dependencies = [
4860
5095
  "bitflags 2.4.0",
4861
5096
  "is-macro",
@@ -4870,16 +5105,16 @@ dependencies = [
4870
5105
 
4871
5106
  [[package]]
4872
5107
  name = "swc_ecma_codegen"
4873
- version = "0.139.17"
5108
+ version = "0.144.1"
4874
5109
  source = "registry+https://github.com/rust-lang/crates.io-index"
4875
- checksum = "c66d1ea16bb9b7ea6f87f17325742ff256fcbd65b188af57c2bf415fe4afc945"
5110
+ checksum = "8e62ba2c0ed1f119fc1a76542d007f1b2c12854d54dea15f5491363227debe11"
4876
5111
  dependencies = [
4877
5112
  "memchr",
4878
5113
  "num-bigint",
4879
5114
  "once_cell",
4880
5115
  "rustc-hash",
4881
5116
  "serde",
4882
- "sourcemap",
5117
+ "sourcemap 6.4.1",
4883
5118
  "swc_atoms",
4884
5119
  "swc_common",
4885
5120
  "swc_ecma_ast",
@@ -4889,24 +5124,23 @@ dependencies = [
4889
5124
 
4890
5125
  [[package]]
4891
5126
  name = "swc_ecma_codegen_macros"
4892
- version = "0.7.2"
5127
+ version = "0.7.3"
4893
5128
  source = "registry+https://github.com/rust-lang/crates.io-index"
4894
- checksum = "bf4ee0caee1018808d94ecd09490cb7affd3d504b19aa11c49238f5fc4b54901"
5129
+ checksum = "dcdff076dccca6cc6a0e0b2a2c8acfb066014382bc6df98ec99e755484814384"
4895
5130
  dependencies = [
4896
- "pmutil 0.5.3",
4897
- "proc-macro2 1.0.66",
4898
- "quote 1.0.28",
5131
+ "pmutil",
5132
+ "proc-macro2 1.0.67",
5133
+ "quote 1.0.33",
4899
5134
  "swc_macros_common",
4900
- "syn 1.0.109",
5135
+ "syn 2.0.37",
4901
5136
  ]
4902
5137
 
4903
5138
  [[package]]
4904
5139
  name = "swc_ecma_loader"
4905
- version = "0.43.14"
5140
+ version = "0.44.2"
4906
5141
  source = "registry+https://github.com/rust-lang/crates.io-index"
4907
- checksum = "fe45f1e5dcc1b005544ff78253b787dea5dfd5e2f712b133964cdc3545c954a4"
5142
+ checksum = "e7d7c322462657ae27ac090a2c89f7e456c94416284a2f5ecf66c43a6a3c19d1"
4908
5143
  dependencies = [
4909
- "ahash 0.7.6",
4910
5144
  "anyhow",
4911
5145
  "pathdiff",
4912
5146
  "serde",
@@ -4916,13 +5150,13 @@ dependencies = [
4916
5150
 
4917
5151
  [[package]]
4918
5152
  name = "swc_ecma_parser"
4919
- version = "0.134.12"
5153
+ version = "0.139.0"
4920
5154
  source = "registry+https://github.com/rust-lang/crates.io-index"
4921
- checksum = "f0a3fcfe3d83dd445cbd9321882e47b467594433d9a21c4d6c37a27f534bb89e"
5155
+ checksum = "3eab46cb863bc5cd61535464e07e5b74d5f792fa26a27b9f6fd4c8daca9903b7"
4922
5156
  dependencies = [
4923
5157
  "either",
4924
- "lexical",
4925
5158
  "num-bigint",
5159
+ "num-traits",
4926
5160
  "serde",
4927
5161
  "smallvec",
4928
5162
  "smartstring",
@@ -4936,9 +5170,9 @@ dependencies = [
4936
5170
 
4937
5171
  [[package]]
4938
5172
  name = "swc_ecma_transforms_base"
4939
- version = "0.127.18"
5173
+ version = "0.132.2"
4940
5174
  source = "registry+https://github.com/rust-lang/crates.io-index"
4941
- checksum = "f9c33ec5369178f3a0580ab86cfe89ffb9c3fbd122aed379cfb71d469d9d61c1"
5175
+ checksum = "01ffd4a8149052bfc1ec1832fcbe04f317846ce635a49ec438df33b06db27d26"
4942
5176
  dependencies = [
4943
5177
  "better_scoped_tls",
4944
5178
  "bitflags 2.4.0",
@@ -4959,9 +5193,9 @@ dependencies = [
4959
5193
 
4960
5194
  [[package]]
4961
5195
  name = "swc_ecma_transforms_classes"
4962
- version = "0.116.18"
5196
+ version = "0.121.2"
4963
5197
  source = "registry+https://github.com/rust-lang/crates.io-index"
4964
- checksum = "6e3b0d5f362f0da97be1f1b06d7b0d8667ea70b4adeabff0dcaecb6259c09525"
5198
+ checksum = "f4b7fee0e2c6f12456d2aefb2418f2f26529b995945d493e1dce35a5a22584fc"
4965
5199
  dependencies = [
4966
5200
  "swc_atoms",
4967
5201
  "swc_common",
@@ -4973,22 +5207,22 @@ dependencies = [
4973
5207
 
4974
5208
  [[package]]
4975
5209
  name = "swc_ecma_transforms_macros"
4976
- version = "0.5.1"
5210
+ version = "0.5.3"
4977
5211
  source = "registry+https://github.com/rust-lang/crates.io-index"
4978
- checksum = "984d5ac69b681fc5438f9abf82b0fda34fe04e119bc75f8213b7e01128c7c9a2"
5212
+ checksum = "8188eab297da773836ef5cf2af03ee5cca7a563e1be4b146f8141452c28cc690"
4979
5213
  dependencies = [
4980
- "pmutil 0.5.3",
4981
- "proc-macro2 1.0.66",
4982
- "quote 1.0.28",
5214
+ "pmutil",
5215
+ "proc-macro2 1.0.67",
5216
+ "quote 1.0.33",
4983
5217
  "swc_macros_common",
4984
- "syn 1.0.109",
5218
+ "syn 2.0.37",
4985
5219
  ]
4986
5220
 
4987
5221
  [[package]]
4988
5222
  name = "swc_ecma_transforms_proposal"
4989
- version = "0.161.22"
5223
+ version = "0.166.3"
4990
5224
  source = "registry+https://github.com/rust-lang/crates.io-index"
4991
- checksum = "0cdce42d44ef775bc29f5ada3678a80ff72fa17a0ef705e14f63cfd0e0155e0e"
5225
+ checksum = "122fd9a69f464694edefbf9c59106b3c15e5cc8cb8575a97836e4fb79018e98f"
4992
5226
  dependencies = [
4993
5227
  "either",
4994
5228
  "rustc-hash",
@@ -5006,11 +5240,10 @@ dependencies = [
5006
5240
 
5007
5241
  [[package]]
5008
5242
  name = "swc_ecma_transforms_react"
5009
- version = "0.173.20"
5243
+ version = "0.178.3"
5010
5244
  source = "registry+https://github.com/rust-lang/crates.io-index"
5011
- checksum = "5fb9481ad4e2acba34c6fbb6d4ccc64efe9f1821675e883dcfa732d7220f4b1e"
5245
+ checksum = "675b5c755b0448268830e85e59429095d3423c0ce4a850b209c6f0eeab069f63"
5012
5246
  dependencies = [
5013
- "ahash 0.7.6",
5014
5247
  "base64 0.13.1",
5015
5248
  "dashmap",
5016
5249
  "indexmap 1.9.3",
@@ -5031,9 +5264,9 @@ dependencies = [
5031
5264
 
5032
5265
  [[package]]
5033
5266
  name = "swc_ecma_transforms_typescript"
5034
- version = "0.177.23"
5267
+ version = "0.182.3"
5035
5268
  source = "registry+https://github.com/rust-lang/crates.io-index"
5036
- checksum = "1fe2eea4f5b8a25c93cdaa29fb1ce4108893da88a11e61e04b7f5295b5468829"
5269
+ checksum = "4eba97b1ea71739fcf278aedad4677a3cacb52288a3f3566191b70d16a889de6"
5037
5270
  dependencies = [
5038
5271
  "serde",
5039
5272
  "swc_atoms",
@@ -5047,9 +5280,9 @@ dependencies = [
5047
5280
 
5048
5281
  [[package]]
5049
5282
  name = "swc_ecma_utils"
5050
- version = "0.117.13"
5283
+ version = "0.122.0"
5051
5284
  source = "registry+https://github.com/rust-lang/crates.io-index"
5052
- checksum = "ad791bbfdafcebd878584021e050964c8ab68aba7eeac9d0ee4afba4c284a629"
5285
+ checksum = "11006a3398ffd4693c4d3b0a1b1a5030edbdc04228159f5301120a6178144708"
5053
5286
  dependencies = [
5054
5287
  "indexmap 1.9.3",
5055
5288
  "num_cpus",
@@ -5065,9 +5298,9 @@ dependencies = [
5065
5298
 
5066
5299
  [[package]]
5067
5300
  name = "swc_ecma_visit"
5068
- version = "0.90.5"
5301
+ version = "0.95.0"
5069
5302
  source = "registry+https://github.com/rust-lang/crates.io-index"
5070
- checksum = "6ce3ac941ae1d6c7e683aa375fc71fbf58df58b441f614d757fbb10554936ca2"
5303
+ checksum = "0f628ec196e76e67892441e14eef2e423a738543d32bffdabfeec20c29582117"
5071
5304
  dependencies = [
5072
5305
  "num-bigint",
5073
5306
  "swc_atoms",
@@ -5079,33 +5312,33 @@ dependencies = [
5079
5312
 
5080
5313
  [[package]]
5081
5314
  name = "swc_eq_ignore_macros"
5082
- version = "0.1.1"
5315
+ version = "0.1.2"
5083
5316
  source = "registry+https://github.com/rust-lang/crates.io-index"
5084
- checksum = "0c20468634668c2bbab581947bb8c75c97158d5a6959f4ba33df20983b20b4f6"
5317
+ checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8"
5085
5318
  dependencies = [
5086
- "pmutil 0.5.3",
5087
- "proc-macro2 1.0.66",
5088
- "quote 1.0.28",
5089
- "syn 1.0.109",
5319
+ "pmutil",
5320
+ "proc-macro2 1.0.67",
5321
+ "quote 1.0.33",
5322
+ "syn 2.0.37",
5090
5323
  ]
5091
5324
 
5092
5325
  [[package]]
5093
5326
  name = "swc_macros_common"
5094
- version = "0.3.7"
5327
+ version = "0.3.8"
5095
5328
  source = "registry+https://github.com/rust-lang/crates.io-index"
5096
- checksum = "3e582c3e3c2269238524923781df5be49e011dbe29cf7683a2215d600a562ea6"
5329
+ checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832"
5097
5330
  dependencies = [
5098
- "pmutil 0.5.3",
5099
- "proc-macro2 1.0.66",
5100
- "quote 1.0.28",
5101
- "syn 1.0.109",
5331
+ "pmutil",
5332
+ "proc-macro2 1.0.67",
5333
+ "quote 1.0.33",
5334
+ "syn 2.0.37",
5102
5335
  ]
5103
5336
 
5104
5337
  [[package]]
5105
5338
  name = "swc_visit"
5106
- version = "0.5.6"
5339
+ version = "0.5.7"
5107
5340
  source = "registry+https://github.com/rust-lang/crates.io-index"
5108
- checksum = "5f412dd4fbc58f509a04e64f5c8038333142fc139e8232f01b883db0094b3b51"
5341
+ checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3"
5109
5342
  dependencies = [
5110
5343
  "either",
5111
5344
  "swc_visit_macros",
@@ -5113,16 +5346,16 @@ dependencies = [
5113
5346
 
5114
5347
  [[package]]
5115
5348
  name = "swc_visit_macros"
5116
- version = "0.5.7"
5349
+ version = "0.5.8"
5117
5350
  source = "registry+https://github.com/rust-lang/crates.io-index"
5118
- checksum = "4cfc226380ba54a5feed2c12f3ccd33f1ae8e959160290e5d2d9b4e918b6472a"
5351
+ checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99"
5119
5352
  dependencies = [
5120
5353
  "Inflector",
5121
- "pmutil 0.5.3",
5122
- "proc-macro2 1.0.66",
5123
- "quote 1.0.28",
5354
+ "pmutil",
5355
+ "proc-macro2 1.0.67",
5356
+ "quote 1.0.33",
5124
5357
  "swc_macros_common",
5125
- "syn 1.0.109",
5358
+ "syn 2.0.37",
5126
5359
  ]
5127
5360
 
5128
5361
  [[package]]
@@ -5142,19 +5375,19 @@ version = "1.0.109"
5142
5375
  source = "registry+https://github.com/rust-lang/crates.io-index"
5143
5376
  checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
5144
5377
  dependencies = [
5145
- "proc-macro2 1.0.66",
5146
- "quote 1.0.28",
5378
+ "proc-macro2 1.0.67",
5379
+ "quote 1.0.33",
5147
5380
  "unicode-ident",
5148
5381
  ]
5149
5382
 
5150
5383
  [[package]]
5151
5384
  name = "syn"
5152
- version = "2.0.29"
5385
+ version = "2.0.37"
5153
5386
  source = "registry+https://github.com/rust-lang/crates.io-index"
5154
- checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
5387
+ checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
5155
5388
  dependencies = [
5156
- "proc-macro2 1.0.66",
5157
- "quote 1.0.28",
5389
+ "proc-macro2 1.0.67",
5390
+ "quote 1.0.33",
5158
5391
  "unicode-ident",
5159
5392
  ]
5160
5393
 
@@ -5164,17 +5397,17 @@ version = "0.12.6"
5164
5397
  source = "registry+https://github.com/rust-lang/crates.io-index"
5165
5398
  checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
5166
5399
  dependencies = [
5167
- "proc-macro2 1.0.66",
5168
- "quote 1.0.28",
5400
+ "proc-macro2 1.0.67",
5401
+ "quote 1.0.33",
5169
5402
  "syn 1.0.109",
5170
5403
  "unicode-xid 0.2.4",
5171
5404
  ]
5172
5405
 
5173
5406
  [[package]]
5174
5407
  name = "target-lexicon"
5175
- version = "0.12.8"
5408
+ version = "0.12.11"
5176
5409
  source = "registry+https://github.com/rust-lang/crates.io-index"
5177
- checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac"
5410
+ checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
5178
5411
 
5179
5412
  [[package]]
5180
5413
  name = "tempfile"
@@ -5185,15 +5418,15 @@ dependencies = [
5185
5418
  "cfg-if",
5186
5419
  "fastrand",
5187
5420
  "redox_syscall 0.3.5",
5188
- "rustix 0.38.3",
5189
- "windows-sys 0.48.0",
5421
+ "rustix",
5422
+ "windows-sys",
5190
5423
  ]
5191
5424
 
5192
5425
  [[package]]
5193
5426
  name = "termcolor"
5194
- version = "1.2.0"
5427
+ version = "1.3.0"
5195
5428
  source = "registry+https://github.com/rust-lang/crates.io-index"
5196
- checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
5429
+ checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64"
5197
5430
  dependencies = [
5198
5431
  "winapi-util",
5199
5432
  ]
@@ -5215,30 +5448,42 @@ dependencies = [
5215
5448
 
5216
5449
  [[package]]
5217
5450
  name = "thiserror"
5218
- version = "1.0.40"
5451
+ version = "1.0.48"
5219
5452
  source = "registry+https://github.com/rust-lang/crates.io-index"
5220
- checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
5453
+ checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7"
5221
5454
  dependencies = [
5222
5455
  "thiserror-impl",
5223
5456
  ]
5224
5457
 
5225
5458
  [[package]]
5226
5459
  name = "thiserror-impl"
5227
- version = "1.0.40"
5460
+ version = "1.0.48"
5461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5462
+ checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
5463
+ dependencies = [
5464
+ "proc-macro2 1.0.67",
5465
+ "quote 1.0.33",
5466
+ "syn 2.0.37",
5467
+ ]
5468
+
5469
+ [[package]]
5470
+ name = "tiff"
5471
+ version = "0.9.0"
5228
5472
  source = "registry+https://github.com/rust-lang/crates.io-index"
5229
- checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
5473
+ checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211"
5230
5474
  dependencies = [
5231
- "proc-macro2 1.0.66",
5232
- "quote 1.0.28",
5233
- "syn 2.0.29",
5475
+ "flate2",
5476
+ "jpeg-decoder",
5477
+ "weezl",
5234
5478
  ]
5235
5479
 
5236
5480
  [[package]]
5237
5481
  name = "time"
5238
- version = "0.3.22"
5482
+ version = "0.3.28"
5239
5483
  source = "registry+https://github.com/rust-lang/crates.io-index"
5240
- checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
5484
+ checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48"
5241
5485
  dependencies = [
5486
+ "deranged",
5242
5487
  "itoa",
5243
5488
  "serde",
5244
5489
  "time-core",
@@ -5253,9 +5498,9 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
5253
5498
 
5254
5499
  [[package]]
5255
5500
  name = "time-macros"
5256
- version = "0.2.9"
5501
+ version = "0.2.14"
5257
5502
  source = "registry+https://github.com/rust-lang/crates.io-index"
5258
- checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
5503
+ checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572"
5259
5504
  dependencies = [
5260
5505
  "time-core",
5261
5506
  ]
@@ -5315,9 +5560,9 @@ dependencies = [
5315
5560
  "parking_lot",
5316
5561
  "pin-project-lite",
5317
5562
  "signal-hook-registry",
5318
- "socket2 0.5.3",
5563
+ "socket2 0.5.4",
5319
5564
  "tokio-macros",
5320
- "windows-sys 0.48.0",
5565
+ "windows-sys",
5321
5566
  ]
5322
5567
 
5323
5568
  [[package]]
@@ -5326,16 +5571,16 @@ version = "2.1.0"
5326
5571
  source = "registry+https://github.com/rust-lang/crates.io-index"
5327
5572
  checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
5328
5573
  dependencies = [
5329
- "proc-macro2 1.0.66",
5330
- "quote 1.0.28",
5331
- "syn 2.0.29",
5574
+ "proc-macro2 1.0.67",
5575
+ "quote 1.0.33",
5576
+ "syn 2.0.37",
5332
5577
  ]
5333
5578
 
5334
5579
  [[package]]
5335
5580
  name = "tokio-metrics"
5336
- version = "0.2.2"
5581
+ version = "0.3.0"
5337
5582
  source = "registry+https://github.com/rust-lang/crates.io-index"
5338
- checksum = "b60ac6224d622f71d0b80546558eedf8ff6c2d3817517a9d3ed87ce24fccf6a6"
5583
+ checksum = "d4b2fc67d5dec41db679b9b052eb572269616926040b7831e32c8a152df77b84"
5339
5584
  dependencies = [
5340
5585
  "futures-util",
5341
5586
  "pin-project-lite",
@@ -5378,9 +5623,9 @@ dependencies = [
5378
5623
 
5379
5624
  [[package]]
5380
5625
  name = "tokio-util"
5381
- version = "0.7.8"
5626
+ version = "0.7.9"
5382
5627
  source = "registry+https://github.com/rust-lang/crates.io-index"
5383
- checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
5628
+ checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
5384
5629
  dependencies = [
5385
5630
  "bytes",
5386
5631
  "futures-core",
@@ -5407,9 +5652,9 @@ checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
5407
5652
 
5408
5653
  [[package]]
5409
5654
  name = "toml_edit"
5410
- version = "0.19.11"
5655
+ version = "0.19.15"
5411
5656
  source = "registry+https://github.com/rust-lang/crates.io-index"
5412
- checksum = "266f016b7f039eec8a1a80dfe6156b633d208b9fccca5e4db1d6775b0c4e34a7"
5657
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
5413
5658
  dependencies = [
5414
5659
  "indexmap 2.0.0",
5415
5660
  "toml_datetime",
@@ -5440,9 +5685,9 @@ version = "0.1.26"
5440
5685
  source = "registry+https://github.com/rust-lang/crates.io-index"
5441
5686
  checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
5442
5687
  dependencies = [
5443
- "proc-macro2 1.0.66",
5444
- "quote 1.0.28",
5445
- "syn 2.0.29",
5688
+ "proc-macro2 1.0.67",
5689
+ "quote 1.0.33",
5690
+ "syn 2.0.37",
5446
5691
  ]
5447
5692
 
5448
5693
  [[package]]
@@ -5456,9 +5701,9 @@ dependencies = [
5456
5701
 
5457
5702
  [[package]]
5458
5703
  name = "triomphe"
5459
- version = "0.1.8"
5704
+ version = "0.1.9"
5460
5705
  source = "registry+https://github.com/rust-lang/crates.io-index"
5461
- checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
5706
+ checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f"
5462
5707
  dependencies = [
5463
5708
  "serde",
5464
5709
  "stable_deref_trait",
@@ -5525,9 +5770,9 @@ checksum = "0609f771ad9c6155384897e1df4d948e692667cc0588548b68eb44d052b27633"
5525
5770
 
5526
5771
  [[package]]
5527
5772
  name = "ttf-parser"
5528
- version = "0.19.1"
5773
+ version = "0.19.2"
5529
5774
  source = "registry+https://github.com/rust-lang/crates.io-index"
5530
- checksum = "a464a4b34948a5f67fddd2b823c62d9d92e44be75058b99939eae6c5b6960b33"
5775
+ checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1"
5531
5776
 
5532
5777
  [[package]]
5533
5778
  name = "typed-arena"
@@ -5537,9 +5782,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
5537
5782
 
5538
5783
  [[package]]
5539
5784
  name = "typenum"
5540
- version = "1.16.0"
5785
+ version = "1.17.0"
5541
5786
  source = "registry+https://github.com/rust-lang/crates.io-index"
5542
- checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
5787
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
5543
5788
 
5544
5789
  [[package]]
5545
5790
  name = "unic-char-property"
@@ -5608,15 +5853,15 @@ checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7"
5608
5853
 
5609
5854
  [[package]]
5610
5855
  name = "unicode-id"
5611
- version = "0.3.3"
5856
+ version = "0.3.4"
5612
5857
  source = "registry+https://github.com/rust-lang/crates.io-index"
5613
- checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a"
5858
+ checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f"
5614
5859
 
5615
5860
  [[package]]
5616
5861
  name = "unicode-ident"
5617
- version = "1.0.9"
5862
+ version = "1.0.12"
5618
5863
  source = "registry+https://github.com/rust-lang/crates.io-index"
5619
- checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
5864
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
5620
5865
 
5621
5866
  [[package]]
5622
5867
  name = "unicode-normalization"
@@ -5641,9 +5886,9 @@ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
5641
5886
 
5642
5887
  [[package]]
5643
5888
  name = "unicode-width"
5644
- version = "0.1.10"
5889
+ version = "0.1.11"
5645
5890
  source = "registry+https://github.com/rust-lang/crates.io-index"
5646
- checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
5891
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
5647
5892
 
5648
5893
  [[package]]
5649
5894
  name = "unicode-xid"
@@ -5681,9 +5926,9 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
5681
5926
 
5682
5927
  [[package]]
5683
5928
  name = "url"
5684
- version = "2.4.0"
5929
+ version = "2.4.1"
5685
5930
  source = "registry+https://github.com/rust-lang/crates.io-index"
5686
- checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
5931
+ checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
5687
5932
  dependencies = [
5688
5933
  "form_urlencoded",
5689
5934
  "idna 0.4.0",
@@ -5710,7 +5955,7 @@ version = "0.35.0"
5710
5955
  source = "registry+https://github.com/rust-lang/crates.io-index"
5711
5956
  checksum = "14d09ddfb0d93bf84824c09336d32e42f80961a9d1680832eb24fdf249ce11e6"
5712
5957
  dependencies = [
5713
- "base64 0.21.2",
5958
+ "base64 0.21.4",
5714
5959
  "log",
5715
5960
  "pico-args",
5716
5961
  "usvg-parser",
@@ -5725,14 +5970,14 @@ version = "0.35.0"
5725
5970
  source = "registry+https://github.com/rust-lang/crates.io-index"
5726
5971
  checksum = "d19bf93d230813599927d88557014e0908ecc3531666d47c634c6838bc8db408"
5727
5972
  dependencies = [
5728
- "data-url",
5973
+ "data-url 0.2.0",
5729
5974
  "flate2",
5730
5975
  "imagesize",
5731
5976
  "kurbo",
5732
5977
  "log",
5733
5978
  "roxmltree",
5734
5979
  "simplecss",
5735
- "siphasher",
5980
+ "siphasher 0.3.11",
5736
5981
  "svgtypes",
5737
5982
  "usvg-tree",
5738
5983
  ]
@@ -5779,9 +6024,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
5779
6024
 
5780
6025
  [[package]]
5781
6026
  name = "uuid"
5782
- version = "1.3.4"
6027
+ version = "1.4.1"
5783
6028
  source = "registry+https://github.com/rust-lang/crates.io-index"
5784
- checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81"
6029
+ checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
5785
6030
  dependencies = [
5786
6031
  "getrandom 0.2.10",
5787
6032
  "serde",
@@ -5789,9 +6034,9 @@ dependencies = [
5789
6034
 
5790
6035
  [[package]]
5791
6036
  name = "v8"
5792
- version = "0.74.3"
6037
+ version = "0.76.0"
5793
6038
  source = "registry+https://github.com/rust-lang/crates.io-index"
5794
- checksum = "2eedac634b8dd39b889c5b62349cbc55913780226239166435c5cf66771792ea"
6039
+ checksum = "9d4e8ae7ef8b4e852e728e343cb6bb471a0424dfefa22585ea0c14a61252d73f"
5795
6040
  dependencies = [
5796
6041
  "bitflags 1.3.2",
5797
6042
  "fslock",
@@ -5813,12 +6058,12 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
5813
6058
 
5814
6059
  [[package]]
5815
6060
  name = "vl-convert"
5816
- version = "0.13.0"
6061
+ version = "0.14.0"
5817
6062
  dependencies = [
5818
6063
  "assert_cmd",
5819
6064
  "clap",
5820
6065
  "dssim",
5821
- "itertools",
6066
+ "itertools 0.11.0",
5822
6067
  "predicates",
5823
6068
  "rstest",
5824
6069
  "serde_json",
@@ -5828,9 +6073,25 @@ dependencies = [
5828
6073
  "vl-convert-rs",
5829
6074
  ]
5830
6075
 
6076
+ [[package]]
6077
+ name = "vl-convert-pdf"
6078
+ version = "0.14.0"
6079
+ dependencies = [
6080
+ "anyhow",
6081
+ "itertools 0.11.0",
6082
+ "miniz_oxide",
6083
+ "pdf-writer",
6084
+ "siphasher 1.0.0",
6085
+ "subsetter",
6086
+ "svg2pdf",
6087
+ "ttf-parser 0.19.2",
6088
+ "unicode-bidi",
6089
+ "usvg",
6090
+ ]
6091
+
5831
6092
  [[package]]
5832
6093
  name = "vl-convert-python"
5833
- version = "0.13.0"
6094
+ version = "0.14.0"
5834
6095
  dependencies = [
5835
6096
  "futures",
5836
6097
  "lazy_static",
@@ -5842,7 +6103,7 @@ dependencies = [
5842
6103
 
5843
6104
  [[package]]
5844
6105
  name = "vl-convert-rs"
5845
- version = "0.13.0"
6106
+ version = "0.14.0"
5846
6107
  dependencies = [
5847
6108
  "deno_core",
5848
6109
  "deno_runtime",
@@ -5852,8 +6113,10 @@ dependencies = [
5852
6113
  "futures",
5853
6114
  "futures-util",
5854
6115
  "http",
6116
+ "image",
5855
6117
  "lazy_static",
5856
6118
  "log",
6119
+ "lz-str",
5857
6120
  "png",
5858
6121
  "reqwest",
5859
6122
  "resvg",
@@ -5864,11 +6127,12 @@ dependencies = [
5864
6127
  "tiny-skia",
5865
6128
  "tokio",
5866
6129
  "usvg",
6130
+ "vl-convert-pdf",
5867
6131
  ]
5868
6132
 
5869
6133
  [[package]]
5870
6134
  name = "vl-convert-vendor"
5871
- version = "0.13.0"
6135
+ version = "0.14.0"
5872
6136
  dependencies = [
5873
6137
  "serde_json",
5874
6138
  ]
@@ -5896,8 +6160,8 @@ version = "0.1.1"
5896
6160
  source = "registry+https://github.com/rust-lang/crates.io-index"
5897
6161
  checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff"
5898
6162
  dependencies = [
5899
- "proc-macro2 1.0.66",
5900
- "quote 1.0.28",
6163
+ "proc-macro2 1.0.67",
6164
+ "quote 1.0.33",
5901
6165
  ]
5902
6166
 
5903
6167
  [[package]]
@@ -5911,9 +6175,9 @@ dependencies = [
5911
6175
 
5912
6176
  [[package]]
5913
6177
  name = "walkdir"
5914
- version = "2.3.3"
6178
+ version = "2.4.0"
5915
6179
  source = "registry+https://github.com/rust-lang/crates.io-index"
5916
- checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
6180
+ checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
5917
6181
  dependencies = [
5918
6182
  "same-file",
5919
6183
  "winapi-util",
@@ -5959,9 +6223,9 @@ dependencies = [
5959
6223
  "bumpalo",
5960
6224
  "log",
5961
6225
  "once_cell",
5962
- "proc-macro2 1.0.66",
5963
- "quote 1.0.28",
5964
- "syn 2.0.29",
6226
+ "proc-macro2 1.0.67",
6227
+ "quote 1.0.33",
6228
+ "syn 2.0.37",
5965
6229
  "wasm-bindgen-shared",
5966
6230
  ]
5967
6231
 
@@ -5983,7 +6247,7 @@ version = "0.2.87"
5983
6247
  source = "registry+https://github.com/rust-lang/crates.io-index"
5984
6248
  checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
5985
6249
  dependencies = [
5986
- "quote 1.0.28",
6250
+ "quote 1.0.33",
5987
6251
  "wasm-bindgen-macro-support",
5988
6252
  ]
5989
6253
 
@@ -5993,9 +6257,9 @@ version = "0.2.87"
5993
6257
  source = "registry+https://github.com/rust-lang/crates.io-index"
5994
6258
  checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
5995
6259
  dependencies = [
5996
- "proc-macro2 1.0.66",
5997
- "quote 1.0.28",
5998
- "syn 2.0.29",
6260
+ "proc-macro2 1.0.67",
6261
+ "quote 1.0.33",
6262
+ "syn 2.0.37",
5999
6263
  "wasm-bindgen-backend",
6000
6264
  "wasm-bindgen-shared",
6001
6265
  ]
@@ -6029,25 +6293,6 @@ dependencies = [
6029
6293
  "wasm-bindgen",
6030
6294
  ]
6031
6295
 
6032
- [[package]]
6033
- name = "webpki"
6034
- version = "0.22.0"
6035
- source = "registry+https://github.com/rust-lang/crates.io-index"
6036
- checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
6037
- dependencies = [
6038
- "ring",
6039
- "untrusted",
6040
- ]
6041
-
6042
- [[package]]
6043
- name = "webpki-roots"
6044
- version = "0.22.6"
6045
- source = "registry+https://github.com/rust-lang/crates.io-index"
6046
- checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
6047
- dependencies = [
6048
- "webpki",
6049
- ]
6050
-
6051
6296
  [[package]]
6052
6297
  name = "webpki-roots"
6053
6298
  version = "0.25.2"
@@ -6062,13 +6307,14 @@ checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
6062
6307
 
6063
6308
  [[package]]
6064
6309
  name = "which"
6065
- version = "4.4.0"
6310
+ version = "4.4.2"
6066
6311
  source = "registry+https://github.com/rust-lang/crates.io-index"
6067
- checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
6312
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
6068
6313
  dependencies = [
6069
6314
  "either",
6070
- "libc",
6315
+ "home",
6071
6316
  "once_cell",
6317
+ "rustix",
6072
6318
  ]
6073
6319
 
6074
6320
  [[package]]
@@ -6105,9 +6351,9 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
6105
6351
 
6106
6352
  [[package]]
6107
6353
  name = "winapi-util"
6108
- version = "0.1.5"
6354
+ version = "0.1.6"
6109
6355
  source = "registry+https://github.com/rust-lang/crates.io-index"
6110
- checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
6356
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
6111
6357
  dependencies = [
6112
6358
  "winapi",
6113
6359
  ]
@@ -6119,18 +6365,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6119
6365
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
6120
6366
 
6121
6367
  [[package]]
6122
- name = "windows-sys"
6123
- version = "0.42.0"
6368
+ name = "windows"
6369
+ version = "0.48.0"
6124
6370
  source = "registry+https://github.com/rust-lang/crates.io-index"
6125
- checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
6371
+ checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
6126
6372
  dependencies = [
6127
- "windows_aarch64_gnullvm 0.42.2",
6128
- "windows_aarch64_msvc 0.42.2",
6129
- "windows_i686_gnu 0.42.2",
6130
- "windows_i686_msvc 0.42.2",
6131
- "windows_x86_64_gnu 0.42.2",
6132
- "windows_x86_64_gnullvm 0.42.2",
6133
- "windows_x86_64_msvc 0.42.2",
6373
+ "windows-targets",
6134
6374
  ]
6135
6375
 
6136
6376
  [[package]]
@@ -6144,108 +6384,66 @@ dependencies = [
6144
6384
 
6145
6385
  [[package]]
6146
6386
  name = "windows-targets"
6147
- version = "0.48.0"
6387
+ version = "0.48.5"
6148
6388
  source = "registry+https://github.com/rust-lang/crates.io-index"
6149
- checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
6389
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
6150
6390
  dependencies = [
6151
- "windows_aarch64_gnullvm 0.48.0",
6152
- "windows_aarch64_msvc 0.48.0",
6153
- "windows_i686_gnu 0.48.0",
6154
- "windows_i686_msvc 0.48.0",
6155
- "windows_x86_64_gnu 0.48.0",
6156
- "windows_x86_64_gnullvm 0.48.0",
6157
- "windows_x86_64_msvc 0.48.0",
6391
+ "windows_aarch64_gnullvm",
6392
+ "windows_aarch64_msvc",
6393
+ "windows_i686_gnu",
6394
+ "windows_i686_msvc",
6395
+ "windows_x86_64_gnu",
6396
+ "windows_x86_64_gnullvm",
6397
+ "windows_x86_64_msvc",
6158
6398
  ]
6159
6399
 
6160
6400
  [[package]]
6161
6401
  name = "windows_aarch64_gnullvm"
6162
- version = "0.42.2"
6163
- source = "registry+https://github.com/rust-lang/crates.io-index"
6164
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
6165
-
6166
- [[package]]
6167
- name = "windows_aarch64_gnullvm"
6168
- version = "0.48.0"
6169
- source = "registry+https://github.com/rust-lang/crates.io-index"
6170
- checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
6171
-
6172
- [[package]]
6173
- name = "windows_aarch64_msvc"
6174
- version = "0.42.2"
6402
+ version = "0.48.5"
6175
6403
  source = "registry+https://github.com/rust-lang/crates.io-index"
6176
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
6404
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
6177
6405
 
6178
6406
  [[package]]
6179
6407
  name = "windows_aarch64_msvc"
6180
- version = "0.48.0"
6181
- source = "registry+https://github.com/rust-lang/crates.io-index"
6182
- checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
6183
-
6184
- [[package]]
6185
- name = "windows_i686_gnu"
6186
- version = "0.42.2"
6408
+ version = "0.48.5"
6187
6409
  source = "registry+https://github.com/rust-lang/crates.io-index"
6188
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
6410
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
6189
6411
 
6190
6412
  [[package]]
6191
6413
  name = "windows_i686_gnu"
6192
- version = "0.48.0"
6193
- source = "registry+https://github.com/rust-lang/crates.io-index"
6194
- checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
6195
-
6196
- [[package]]
6197
- name = "windows_i686_msvc"
6198
- version = "0.42.2"
6414
+ version = "0.48.5"
6199
6415
  source = "registry+https://github.com/rust-lang/crates.io-index"
6200
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
6416
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
6201
6417
 
6202
6418
  [[package]]
6203
6419
  name = "windows_i686_msvc"
6204
- version = "0.48.0"
6205
- source = "registry+https://github.com/rust-lang/crates.io-index"
6206
- checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
6207
-
6208
- [[package]]
6209
- name = "windows_x86_64_gnu"
6210
- version = "0.42.2"
6420
+ version = "0.48.5"
6211
6421
  source = "registry+https://github.com/rust-lang/crates.io-index"
6212
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
6422
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
6213
6423
 
6214
6424
  [[package]]
6215
6425
  name = "windows_x86_64_gnu"
6216
- version = "0.48.0"
6217
- source = "registry+https://github.com/rust-lang/crates.io-index"
6218
- checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
6219
-
6220
- [[package]]
6221
- name = "windows_x86_64_gnullvm"
6222
- version = "0.42.2"
6426
+ version = "0.48.5"
6223
6427
  source = "registry+https://github.com/rust-lang/crates.io-index"
6224
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
6428
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
6225
6429
 
6226
6430
  [[package]]
6227
6431
  name = "windows_x86_64_gnullvm"
6228
- version = "0.48.0"
6229
- source = "registry+https://github.com/rust-lang/crates.io-index"
6230
- checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
6231
-
6232
- [[package]]
6233
- name = "windows_x86_64_msvc"
6234
- version = "0.42.2"
6432
+ version = "0.48.5"
6235
6433
  source = "registry+https://github.com/rust-lang/crates.io-index"
6236
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
6434
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
6237
6435
 
6238
6436
  [[package]]
6239
6437
  name = "windows_x86_64_msvc"
6240
- version = "0.48.0"
6438
+ version = "0.48.5"
6241
6439
  source = "registry+https://github.com/rust-lang/crates.io-index"
6242
- checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
6440
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
6243
6441
 
6244
6442
  [[package]]
6245
6443
  name = "winnow"
6246
- version = "0.4.7"
6444
+ version = "0.5.15"
6247
6445
  source = "registry+https://github.com/rust-lang/crates.io-index"
6248
- checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448"
6446
+ checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
6249
6447
  dependencies = [
6250
6448
  "memchr",
6251
6449
  ]
@@ -6257,7 +6455,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6257
6455
  checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
6258
6456
  dependencies = [
6259
6457
  "cfg-if",
6260
- "windows-sys 0.48.0",
6458
+ "windows-sys",
6261
6459
  ]
6262
6460
 
6263
6461
  [[package]]
@@ -6271,11 +6469,11 @@ dependencies = [
6271
6469
 
6272
6470
  [[package]]
6273
6471
  name = "x25519-dalek"
6274
- version = "2.0.0-rc.3"
6472
+ version = "2.0.0"
6275
6473
  source = "registry+https://github.com/rust-lang/crates.io-index"
6276
- checksum = "ec7fae07da688e17059d5886712c933bb0520f15eff2e09cfa18e30968f4e63a"
6474
+ checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
6277
6475
  dependencies = [
6278
- "curve25519-dalek 4.0.0-rc.3",
6476
+ "curve25519-dalek 4.1.1",
6279
6477
  "rand_core 0.6.4",
6280
6478
  "serde",
6281
6479
  "zeroize",
@@ -6283,9 +6481,9 @@ dependencies = [
6283
6481
 
6284
6482
  [[package]]
6285
6483
  name = "x509-parser"
6286
- version = "0.15.0"
6484
+ version = "0.15.1"
6287
6485
  source = "registry+https://github.com/rust-lang/crates.io-index"
6288
- checksum = "bab0c2f54ae1d92f4fcb99c0b7ccf0b1e3451cbd395e5f115ccbdbcb18d4f634"
6486
+ checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da"
6289
6487
  dependencies = [
6290
6488
  "asn1-rs",
6291
6489
  "data-encoding",
@@ -6325,7 +6523,16 @@ version = "1.4.2"
6325
6523
  source = "registry+https://github.com/rust-lang/crates.io-index"
6326
6524
  checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
6327
6525
  dependencies = [
6328
- "proc-macro2 1.0.66",
6329
- "quote 1.0.28",
6330
- "syn 2.0.29",
6526
+ "proc-macro2 1.0.67",
6527
+ "quote 1.0.33",
6528
+ "syn 2.0.37",
6529
+ ]
6530
+
6531
+ [[package]]
6532
+ name = "zune-inflate"
6533
+ version = "0.2.54"
6534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6535
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
6536
+ dependencies = [
6537
+ "simd-adler32",
6331
6538
  ]