vl-convert-python 0.13.1__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.1 → vl_convert_python-0.14.0}/Cargo.lock +953 -871
  2. vl_convert_python-0.14.0/Cargo.toml +10 -0
  3. {vl_convert_python-0.13.1 → vl_convert_python-0.14.0}/PKG-INFO +3 -2
  4. {vl_convert_python-0.13.1 → 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.1 → 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.1 → vl_convert_python-0.14.0/vl-convert-python}/Cargo.toml +4 -5
  11. {vl_convert_python-0.13.1/local_dependencies/vl-convert-rs → vl_convert_python-0.14.0/vl-convert-python}/LICENSE +1 -1
  12. {vl_convert_python-0.13.1 → vl_convert_python-0.14.0/vl-convert-python}/README.md +2 -1
  13. {vl_convert_python-0.13.1 → vl_convert_python-0.14.0/vl-convert-python}/src/lib.rs +197 -6
  14. {vl_convert_python-0.13.1 → vl_convert_python-0.14.0/vl-convert-python}/tests/test_specs.py +111 -3
  15. {vl_convert_python-0.13.1/local_dependencies/vl-convert-rs → vl_convert_python-0.14.0/vl-convert-python}/thirdparty_rust.yaml +361 -391
  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.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/converter.rs +344 -79
  19. {vl_convert_python-0.13.1/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.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/test_specs.rs +5 -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.1 → vl_convert_python-0.14.0/vl-convert-rs}/thirdparty_rust.yaml +361 -391
  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.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor/import_map.json +4 -57
  30. {vl_convert_python-0.13.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/vendor_imports.js +1 -1
  31. vl_convert_python-0.13.1/local_dependencies/vl-convert-rs/Cargo.toml +0 -36
  32. vl_convert_python-0.13.1/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_7/seattle-weather.vg.json +0 -1
  33. vl_convert_python-0.13.1/local_dependencies/vl-convert-rs/tests/vl-specs/expected/v5_7/seattle-weather.vg.pretty.json +0 -874
  34. vl_convert_python-0.13.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1 → vl_convert_python-0.14.0/vl-convert-python}/notebooks/convert_vegalite.ipynb +0 -0
  90. {vl_convert_python-0.13.1 → vl_convert_python-0.14.0/vl-convert-python}/tests/test_get_local_tz.py +0 -0
  91. {vl_convert_python-0.13.1 → vl_convert_python-0.14.0/vl-convert-python}/tests/test_themes.py +0 -0
  92. {vl_convert_python-0.13.1/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.1/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.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/README.md +0 -0
  95. {vl_convert_python-0.13.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/examples/conversion1.rs +0 -0
  96. {vl_convert_python-0.13.1/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.1/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.1/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.1/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.1/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.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/image_loading.rs +0 -0
  102. {vl_convert_python-0.13.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/lib.rs +0 -0
  103. {vl_convert_python-0.13.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/module_loader/mod.rs +0 -0
  104. {vl_convert_python-0.13.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/src/text.rs +0 -0
  105. {vl_convert_python-0.13.1/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.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/OFL.txt +0 -0
  107. {vl_convert_python-0.13.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/fonts/Caveat/README.txt +0 -0
  108. {vl_convert_python-0.13.1/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.1/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.1/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.1/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.1/local_dependencies → vl_convert_python-0.14.0}/vl-convert-rs/tests/test_themes.rs +0 -0
  113. {vl_convert_python-0.13.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1 → vl_convert_python-0.14.0/vl-convert-rs}/thirdparty_font.md +0 -0
  205. {vl_convert_python-0.13.1 → vl_convert_python-0.14.0/vl-convert-rs}/thirdparty_javascript.md +0 -0
  206. {vl_convert_python-0.13.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
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"
123
138
  source = "registry+https://github.com/rust-lang/crates.io-index"
124
- checksum = "56fc6cf8dc8c4158eed8649f9b8b0ea1518eb62b544fe9490d66fa0b349eafe9"
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"
277
- source = "registry+https://github.com/rust-lang/crates.io-index"
278
- checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
279
- 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"
293
+ version = "0.1.73"
288
294
  source = "registry+https://github.com/rust-lang/crates.io-index"
289
- checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
295
+ checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
290
296
  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"
@@ -422,27 +428,26 @@ dependencies = [
422
428
 
423
429
  [[package]]
424
430
  name = "bstr"
425
- version = "1.5.0"
431
+ version = "1.6.2"
426
432
  source = "registry+https://github.com/rust-lang/crates.io-index"
427
- checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5"
433
+ checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a"
428
434
  dependencies = [
429
435
  "memchr",
430
- "once_cell",
431
436
  "regex-automata",
432
437
  "serde",
433
438
  ]
434
439
 
435
440
  [[package]]
436
441
  name = "bumpalo"
437
- version = "3.13.0"
442
+ version = "3.14.0"
438
443
  source = "registry+https://github.com/rust-lang/crates.io-index"
439
- checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
444
+ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
440
445
 
441
446
  [[package]]
442
447
  name = "bytemuck"
443
- version = "1.13.1"
448
+ version = "1.14.0"
444
449
  source = "registry+https://github.com/rust-lang/crates.io-index"
445
- checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
450
+ checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
446
451
 
447
452
  [[package]]
448
453
  name = "byteorder"
@@ -452,9 +457,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
452
457
 
453
458
  [[package]]
454
459
  name = "bytes"
455
- version = "1.4.0"
460
+ version = "1.5.0"
456
461
  source = "registry+https://github.com/rust-lang/crates.io-index"
457
- checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
462
+ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
458
463
 
459
464
  [[package]]
460
465
  name = "cache_control"
@@ -473,11 +478,12 @@ dependencies = [
473
478
 
474
479
  [[package]]
475
480
  name = "cc"
476
- version = "1.0.79"
481
+ version = "1.0.83"
477
482
  source = "registry+https://github.com/rust-lang/crates.io-index"
478
- checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
483
+ checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
479
484
  dependencies = [
480
485
  "jobserver",
486
+ "libc",
481
487
  ]
482
488
 
483
489
  [[package]]
@@ -486,6 +492,19 @@ version = "1.0.0"
486
492
  source = "registry+https://github.com/rust-lang/crates.io-index"
487
493
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
488
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
+
489
508
  [[package]]
490
509
  name = "cipher"
491
510
  version = "0.4.4"
@@ -498,45 +517,43 @@ dependencies = [
498
517
 
499
518
  [[package]]
500
519
  name = "clap"
501
- version = "4.3.8"
520
+ version = "4.4.4"
502
521
  source = "registry+https://github.com/rust-lang/crates.io-index"
503
- checksum = "d9394150f5b4273a1763355bd1c2ec54cc5a2593f790587bcd6b2c947cfa9211"
522
+ checksum = "b1d7b8d5ec32af0fadc644bf1fd509a688c2103b185644bb1e29d164e0703136"
504
523
  dependencies = [
505
524
  "clap_builder",
506
525
  "clap_derive",
507
- "once_cell",
508
526
  ]
509
527
 
510
528
  [[package]]
511
529
  name = "clap_builder"
512
- version = "4.3.8"
530
+ version = "4.4.4"
513
531
  source = "registry+https://github.com/rust-lang/crates.io-index"
514
- checksum = "9a78fbdd3cc2914ddf37ba444114bc7765bbdcb55ec9cbe6fa054f0137400717"
532
+ checksum = "5179bb514e4d7c2051749d8fcefa2ed6d06a9f4e6d69faf3805f5d80b8cf8d56"
515
533
  dependencies = [
516
534
  "anstream",
517
535
  "anstyle",
518
- "bitflags 1.3.2",
519
536
  "clap_lex",
520
537
  "strsim",
521
538
  ]
522
539
 
523
540
  [[package]]
524
541
  name = "clap_derive"
525
- version = "4.3.2"
542
+ version = "4.4.2"
526
543
  source = "registry+https://github.com/rust-lang/crates.io-index"
527
- checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f"
544
+ checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873"
528
545
  dependencies = [
529
546
  "heck",
530
- "proc-macro2 1.0.66",
531
- "quote 1.0.28",
532
- "syn 2.0.29",
547
+ "proc-macro2 1.0.67",
548
+ "quote 1.0.33",
549
+ "syn 2.0.37",
533
550
  ]
534
551
 
535
552
  [[package]]
536
553
  name = "clap_lex"
537
- version = "0.5.0"
554
+ version = "0.5.1"
538
555
  source = "registry+https://github.com/rust-lang/crates.io-index"
539
- checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
556
+ checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961"
540
557
 
541
558
  [[package]]
542
559
  name = "cmake"
@@ -571,9 +588,9 @@ dependencies = [
571
588
 
572
589
  [[package]]
573
590
  name = "const-oid"
574
- version = "0.9.2"
591
+ version = "0.9.5"
575
592
  source = "registry+https://github.com/rust-lang/crates.io-index"
576
- checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913"
593
+ checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
577
594
 
578
595
  [[package]]
579
596
  name = "convert_case"
@@ -599,9 +616,9 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
599
616
 
600
617
  [[package]]
601
618
  name = "cpufeatures"
602
- version = "0.2.8"
619
+ version = "0.2.9"
603
620
  source = "registry+https://github.com/rust-lang/crates.io-index"
604
- checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c"
621
+ checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
605
622
  dependencies = [
606
623
  "libc",
607
624
  ]
@@ -678,9 +695,9 @@ dependencies = [
678
695
 
679
696
  [[package]]
680
697
  name = "crypto-bigint"
681
- version = "0.5.2"
698
+ version = "0.5.3"
682
699
  source = "registry+https://github.com/rust-lang/crates.io-index"
683
- checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15"
700
+ checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124"
684
701
  dependencies = [
685
702
  "generic-array 0.14.7",
686
703
  "rand_core 0.6.4",
@@ -723,9 +740,9 @@ dependencies = [
723
740
 
724
741
  [[package]]
725
742
  name = "curve25519-dalek"
726
- version = "4.0.0-rc.3"
743
+ version = "4.1.1"
727
744
  source = "registry+https://github.com/rust-lang/crates.io-index"
728
- checksum = "436ace70fc06e06f7f689d2624dc4e2f0ea666efb5aa704215f7249ae6e047a7"
745
+ checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
729
746
  dependencies = [
730
747
  "cfg-if",
731
748
  "cpufeatures",
@@ -743,19 +760,19 @@ version = "0.1.0"
743
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
744
761
  checksum = "83fdaf97f4804dcebfa5862639bc9ce4121e82140bec2a987ac5140294865b5b"
745
762
  dependencies = [
746
- "proc-macro2 1.0.66",
747
- "quote 1.0.28",
748
- "syn 2.0.29",
763
+ "proc-macro2 1.0.67",
764
+ "quote 1.0.33",
765
+ "syn 2.0.37",
749
766
  ]
750
767
 
751
768
  [[package]]
752
769
  name = "dashmap"
753
- version = "5.4.0"
770
+ version = "5.5.3"
754
771
  source = "registry+https://github.com/rust-lang/crates.io-index"
755
- checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
772
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
756
773
  dependencies = [
757
774
  "cfg-if",
758
- "hashbrown 0.12.3",
775
+ "hashbrown 0.14.0",
759
776
  "lock_api",
760
777
  "once_cell",
761
778
  "parking_lot_core",
@@ -773,6 +790,22 @@ version = "0.2.0"
773
790
  source = "registry+https://github.com/rust-lang/crates.io-index"
774
791
  checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5"
775
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
+
776
809
  [[package]]
777
810
  name = "deno-proc-macro-rules"
778
811
  version = "0.3.2"
@@ -780,8 +813,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
780
813
  checksum = "3c65c2ffdafc1564565200967edc4851c7b55422d3913466688907efd05ea26f"
781
814
  dependencies = [
782
815
  "deno-proc-macro-rules-macros",
783
- "proc-macro2 1.0.66",
784
- "syn 2.0.29",
816
+ "proc-macro2 1.0.67",
817
+ "syn 2.0.37",
785
818
  ]
786
819
 
787
820
  [[package]]
@@ -791,16 +824,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
791
824
  checksum = "3047b312b7451e3190865713a4dd6e1f821aed614ada219766ebc3024a690435"
792
825
  dependencies = [
793
826
  "once_cell",
794
- "proc-macro2 1.0.66",
795
- "quote 1.0.28",
796
- "syn 2.0.29",
827
+ "proc-macro2 1.0.67",
828
+ "quote 1.0.33",
829
+ "syn 2.0.37",
797
830
  ]
798
831
 
799
832
  [[package]]
800
833
  name = "deno_ast"
801
- version = "0.27.3"
834
+ version = "0.29.3"
802
835
  source = "registry+https://github.com/rust-lang/crates.io-index"
803
- checksum = "6b17e25531279d9795aeb076909c91c9b369fa63fd4d801486950577d0457d22"
836
+ checksum = "577ec3850834c2578eb44afa9250f9a807f8497664e6e2aaae19cea0aac2fe3b"
804
837
  dependencies = [
805
838
  "anyhow",
806
839
  "base64 0.13.1",
@@ -834,9 +867,9 @@ dependencies = [
834
867
 
835
868
  [[package]]
836
869
  name = "deno_broadcast_channel"
837
- version = "0.109.0"
870
+ version = "0.113.0"
838
871
  source = "registry+https://github.com/rust-lang/crates.io-index"
839
- checksum = "a67695ec715882c612d2c199cddffe0e51ed86f8b65752166c90e7d406a2a751"
872
+ checksum = "5db8daa7abc0040328967dbf6e45147febe4d0362ac290d06d28bd1b2bdf69d0"
840
873
  dependencies = [
841
874
  "async-trait",
842
875
  "deno_core",
@@ -846,9 +879,9 @@ dependencies = [
846
879
 
847
880
  [[package]]
848
881
  name = "deno_cache"
849
- version = "0.47.0"
882
+ version = "0.51.0"
850
883
  source = "registry+https://github.com/rust-lang/crates.io-index"
851
- checksum = "3aec8f7db8a10e7591758bebe06f0aba5a2acbad5404c31bb859e742ea4c6e12"
884
+ checksum = "c6d291bc76ba31f38018f934e46844a8be5b4d6d594584d27a44d800ee339b96"
852
885
  dependencies = [
853
886
  "async-trait",
854
887
  "deno_core",
@@ -860,24 +893,25 @@ dependencies = [
860
893
 
861
894
  [[package]]
862
895
  name = "deno_console"
863
- version = "0.115.0"
896
+ version = "0.119.0"
864
897
  source = "registry+https://github.com/rust-lang/crates.io-index"
865
- checksum = "19ab05b798826985966deb29fc6773ed29570de2f2147a30c4289c7cdf635214"
898
+ checksum = "106305c29d87aaa8030a472486074ba780dccc75c909a4f55bbac4376d8425a3"
866
899
  dependencies = [
867
900
  "deno_core",
868
901
  ]
869
902
 
870
903
  [[package]]
871
904
  name = "deno_core"
872
- version = "0.200.0"
905
+ version = "0.214.0"
873
906
  source = "registry+https://github.com/rust-lang/crates.io-index"
874
- checksum = "a8ba264b90ceb6e95b39d82e674d8ecae86ca012f900338ea50d1a077d9d75fd"
907
+ checksum = "be0af76effe9a766f7c9a253171ab10b9adfaf4b10c6eb0b9f005f9dd0ba2948"
875
908
  dependencies = [
876
909
  "anyhow",
877
910
  "bytes",
878
911
  "deno_ops",
912
+ "deno_unsync 0.2.1",
879
913
  "futures",
880
- "indexmap 1.9.3",
914
+ "indexmap 2.0.0",
881
915
  "libc",
882
916
  "log",
883
917
  "once_cell",
@@ -887,7 +921,7 @@ dependencies = [
887
921
  "serde_json",
888
922
  "serde_v8",
889
923
  "smallvec",
890
- "sourcemap",
924
+ "sourcemap 7.0.0",
891
925
  "tokio",
892
926
  "url",
893
927
  "v8",
@@ -895,9 +929,9 @@ dependencies = [
895
929
 
896
930
  [[package]]
897
931
  name = "deno_crypto"
898
- version = "0.129.0"
932
+ version = "0.133.0"
899
933
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
- checksum = "7247d39660238354f71103f0db7a944c3ac3fb6759ab5410d708f7496eaa89a5"
934
+ checksum = "da44f7e0da3865d67f28e2a4308ccb8462bcd955fc8b73414c201297425d8f3b"
901
935
  dependencies = [
902
936
  "aes",
903
937
  "aes-gcm",
@@ -931,12 +965,12 @@ dependencies = [
931
965
 
932
966
  [[package]]
933
967
  name = "deno_fetch"
934
- version = "0.139.0"
968
+ version = "0.143.0"
935
969
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
- checksum = "e4f1b9a643427c7f732a4540e250560e1801970f033bae0d5e4abc7b83e36160"
970
+ checksum = "7f6b68ddfb8506da0af214e41c608e75a2b867a587e8110f07bf8da5171649ff"
937
971
  dependencies = [
938
972
  "bytes",
939
- "data-url",
973
+ "data-url 0.3.0",
940
974
  "deno_core",
941
975
  "deno_tls",
942
976
  "dyn-clone",
@@ -949,9 +983,9 @@ dependencies = [
949
983
 
950
984
  [[package]]
951
985
  name = "deno_ffi"
952
- version = "0.102.0"
986
+ version = "0.106.0"
953
987
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
- checksum = "dbe90f222a36db0eb0f4c9e81c28d6dc1f0619610943ded0782b3ccff2c4d569"
988
+ checksum = "a771c9d8141618fd383515a868e5384b93daa6436a6997fe9bb10d6a77cc83ec"
955
989
  dependencies = [
956
990
  "deno_core",
957
991
  "dlopen",
@@ -967,9 +1001,9 @@ dependencies = [
967
1001
 
968
1002
  [[package]]
969
1003
  name = "deno_fs"
970
- version = "0.25.0"
1004
+ version = "0.29.0"
971
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
972
- checksum = "5093d5bbdfab5ff849cbe91a1f929dbae68bb53bdf79d67ae86670e8031dbeac"
1006
+ checksum = "9426fdfd2961574560736e9ddae5599ec373b65c32d15309216f25fc562c2b05"
973
1007
  dependencies = [
974
1008
  "async-trait",
975
1009
  "deno_core",
@@ -987,9 +1021,9 @@ dependencies = [
987
1021
 
988
1022
  [[package]]
989
1023
  name = "deno_http"
990
- version = "0.110.0"
1024
+ version = "0.114.0"
991
1025
  source = "registry+https://github.com/rust-lang/crates.io-index"
992
- checksum = "5e51a352b2c70189f7155aa6a413c916e7ee72da080dff740b95f644c2578f08"
1026
+ checksum = "807c5e2d63a773d54eef5e83bcc8ac00a348d6177e440a23030a6954f2446d0a"
993
1027
  dependencies = [
994
1028
  "async-compression",
995
1029
  "async-trait",
@@ -1004,7 +1038,7 @@ dependencies = [
1004
1038
  "fly-accept-encoding",
1005
1039
  "http",
1006
1040
  "httparse",
1007
- "hyper 0.14.26",
1041
+ "hyper 0.14.27",
1008
1042
  "hyper 1.0.0-rc.4",
1009
1043
  "memmem",
1010
1044
  "mime",
@@ -1023,9 +1057,9 @@ dependencies = [
1023
1057
 
1024
1058
  [[package]]
1025
1059
  name = "deno_io"
1026
- version = "0.25.0"
1060
+ version = "0.29.0"
1027
1061
  source = "registry+https://github.com/rust-lang/crates.io-index"
1028
- checksum = "74fd76d605f98f03716e57896b47f8c6276309c7981007b906ff029908efbbaa"
1062
+ checksum = "937d448e3bdf75a790a7eb4ad03f23b93cc2be7d1e1a1d6cb315459a7b5f7ccd"
1029
1063
  dependencies = [
1030
1064
  "async-trait",
1031
1065
  "deno_core",
@@ -1038,29 +1072,37 @@ dependencies = [
1038
1072
 
1039
1073
  [[package]]
1040
1074
  name = "deno_kv"
1041
- version = "0.23.0"
1075
+ version = "0.27.0"
1042
1076
  source = "registry+https://github.com/rust-lang/crates.io-index"
1043
- checksum = "8421c3fc2877ee939c64d03632af2714b528f8870a53c257f3053a26ff73f9de"
1077
+ checksum = "512b333f6d058362ad321f67a2daa7bea740af0709ac4f613045aff1e18d9b56"
1044
1078
  dependencies = [
1045
1079
  "anyhow",
1046
1080
  "async-trait",
1047
1081
  "base64 0.13.1",
1082
+ "chrono",
1048
1083
  "deno_core",
1084
+ "deno_unsync 0.1.1",
1049
1085
  "hex",
1086
+ "log",
1050
1087
  "num-bigint",
1088
+ "prost",
1089
+ "prost-build",
1051
1090
  "rand",
1091
+ "reqwest",
1052
1092
  "rusqlite",
1053
1093
  "serde",
1054
1094
  "serde_json",
1095
+ "termcolor",
1055
1096
  "tokio",
1097
+ "url",
1056
1098
  "uuid",
1057
1099
  ]
1058
1100
 
1059
1101
  [[package]]
1060
1102
  name = "deno_lockfile"
1061
- version = "0.15.0"
1103
+ version = "0.17.1"
1062
1104
  source = "registry+https://github.com/rust-lang/crates.io-index"
1063
- checksum = "3e1fcc91fa4e18c3e0574965d7133709e76eda665cb589de703219f0819dfaec"
1105
+ checksum = "c7673d66847223bd4115075a96b0699da71b1755524aeb3956f0a3edf3af3217"
1064
1106
  dependencies = [
1065
1107
  "ring",
1066
1108
  "serde",
@@ -1070,20 +1112,20 @@ dependencies = [
1070
1112
 
1071
1113
  [[package]]
1072
1114
  name = "deno_media_type"
1073
- version = "0.1.1"
1115
+ version = "0.1.2"
1074
1116
  source = "registry+https://github.com/rust-lang/crates.io-index"
1075
- checksum = "001d69b833ed4d244b608bab9c07069bfb570f631b763b58e73f82a020bf84ef"
1117
+ checksum = "a798670c20308e5770cc0775de821424ff9e85665b602928509c8c70430b3ee0"
1076
1118
  dependencies = [
1077
- "data-url",
1119
+ "data-url 0.3.0",
1078
1120
  "serde",
1079
1121
  "url",
1080
1122
  ]
1081
1123
 
1082
1124
  [[package]]
1083
1125
  name = "deno_napi"
1084
- version = "0.45.0"
1126
+ version = "0.49.0"
1085
1127
  source = "registry+https://github.com/rust-lang/crates.io-index"
1086
- checksum = "5f59dc8b695436446c321c1de59d472d79764acbfbcefc50dd2fa202c7aa9417"
1128
+ checksum = "930626e5b0313489dbc380cf2117083b28b0aa8dc8259459f9f0d9ba8ccc0d33"
1087
1129
  dependencies = [
1088
1130
  "deno_core",
1089
1131
  "libloading",
@@ -1091,9 +1133,9 @@ dependencies = [
1091
1133
 
1092
1134
  [[package]]
1093
1135
  name = "deno_net"
1094
- version = "0.107.0"
1136
+ version = "0.111.0"
1095
1137
  source = "registry+https://github.com/rust-lang/crates.io-index"
1096
- checksum = "4925202ba8af63c44cff743780c26b01e7a266c2efde286efef5dfd90a1b1da5"
1138
+ checksum = "b50a8025108d059967e569e9f067820cb494834bef439cfba38ffe4477777443"
1097
1139
  dependencies = [
1098
1140
  "deno_core",
1099
1141
  "deno_tls",
@@ -1101,7 +1143,7 @@ dependencies = [
1101
1143
  "log",
1102
1144
  "pin-project",
1103
1145
  "serde",
1104
- "socket2 0.4.9",
1146
+ "socket2 0.5.4",
1105
1147
  "tokio",
1106
1148
  "trust-dns-proto",
1107
1149
  "trust-dns-resolver",
@@ -1109,18 +1151,21 @@ dependencies = [
1109
1151
 
1110
1152
  [[package]]
1111
1153
  name = "deno_node"
1112
- version = "0.52.0"
1154
+ version = "0.56.0"
1113
1155
  source = "registry+https://github.com/rust-lang/crates.io-index"
1114
- checksum = "74a5c14404af70bdbef4f904b20f328cd0f3d29a3e51f42557c974c03bfae339"
1156
+ checksum = "e1231675ab5b30827490d83bd68c4f77b115599d0800e06f0215705f942b6aab"
1115
1157
  dependencies = [
1158
+ "aead-gcm-stream",
1116
1159
  "aes",
1117
1160
  "brotli",
1161
+ "bytes",
1118
1162
  "cbc",
1119
1163
  "data-encoding",
1120
1164
  "deno_core",
1121
1165
  "deno_fetch",
1122
1166
  "deno_fs",
1123
1167
  "deno_media_type",
1168
+ "deno_net",
1124
1169
  "deno_npm",
1125
1170
  "deno_semver",
1126
1171
  "digest 0.10.7",
@@ -1128,10 +1173,12 @@ dependencies = [
1128
1173
  "ecb",
1129
1174
  "elliptic-curve 0.13.5",
1130
1175
  "errno 0.2.8",
1176
+ "h2",
1131
1177
  "hex",
1132
1178
  "hkdf",
1179
+ "http",
1133
1180
  "idna 0.3.0",
1134
- "indexmap 1.9.3",
1181
+ "indexmap 2.0.0",
1135
1182
  "lazy-regex",
1136
1183
  "libc",
1137
1184
  "libz-sys",
@@ -1161,6 +1208,7 @@ dependencies = [
1161
1208
  "signature 1.6.4",
1162
1209
  "tokio",
1163
1210
  "typenum",
1211
+ "url",
1164
1212
  "whoami",
1165
1213
  "winapi",
1166
1214
  "x25519-dalek",
@@ -1169,9 +1217,9 @@ dependencies = [
1169
1217
 
1170
1218
  [[package]]
1171
1219
  name = "deno_npm"
1172
- version = "0.11.0"
1220
+ version = "0.15.1"
1173
1221
  source = "registry+https://github.com/rust-lang/crates.io-index"
1174
- checksum = "341f2c3935bee51c15203c587213c42d120f0dc56f0aca912a4bebbf038d1030"
1222
+ checksum = "7aba69155a585297af4b9ba8d204567bcd51b25af77b5f4c8856b867019093ba"
1175
1223
  dependencies = [
1176
1224
  "anyhow",
1177
1225
  "async-trait",
@@ -1186,32 +1234,30 @@ dependencies = [
1186
1234
 
1187
1235
  [[package]]
1188
1236
  name = "deno_ops"
1189
- version = "0.78.0"
1237
+ version = "0.90.0"
1190
1238
  source = "registry+https://github.com/rust-lang/crates.io-index"
1191
- checksum = "ffd1c83b1fd465ee0156f2917c9af9ca09fe2bf54052a2cae1a8dcbc7b89aefc"
1239
+ checksum = "568aba570695e05f08c2181bcd6cd3579684af42f489b9ae42712348044b4af7"
1192
1240
  dependencies = [
1193
1241
  "deno-proc-macro-rules",
1194
1242
  "lazy-regex",
1195
1243
  "once_cell",
1196
- "pmutil 0.6.1",
1244
+ "pmutil",
1197
1245
  "proc-macro-crate",
1198
- "proc-macro2 1.0.66",
1199
- "quote 1.0.28",
1246
+ "proc-macro2 1.0.67",
1247
+ "quote 1.0.33",
1200
1248
  "regex",
1201
1249
  "strum",
1202
1250
  "strum_macros",
1203
- "syn 1.0.109",
1204
- "syn 2.0.29",
1251
+ "syn 2.0.37",
1205
1252
  "thiserror",
1206
1253
  ]
1207
1254
 
1208
1255
  [[package]]
1209
1256
  name = "deno_runtime"
1210
- version = "0.123.0"
1257
+ version = "0.127.0"
1211
1258
  source = "registry+https://github.com/rust-lang/crates.io-index"
1212
- checksum = "5f75fb21fb6f25c74548442909582ed63e8343e3b5e0d1604ca182852189dfd9"
1259
+ checksum = "201cb5efb9ff9a99ace000f596a268e86edb9913e5ba16dd497b6e9e217d39df"
1213
1260
  dependencies = [
1214
- "atty",
1215
1261
  "console_static_text",
1216
1262
  "deno_ast",
1217
1263
  "deno_broadcast_channel",
@@ -1241,7 +1287,7 @@ dependencies = [
1241
1287
  "fs3",
1242
1288
  "fwdansi",
1243
1289
  "http",
1244
- "hyper 0.14.26",
1290
+ "hyper 0.14.27",
1245
1291
  "libc",
1246
1292
  "log",
1247
1293
  "netif",
@@ -1257,15 +1303,16 @@ dependencies = [
1257
1303
  "tokio",
1258
1304
  "tokio-metrics",
1259
1305
  "uuid",
1306
+ "which",
1260
1307
  "winapi",
1261
1308
  "winres",
1262
1309
  ]
1263
1310
 
1264
1311
  [[package]]
1265
1312
  name = "deno_semver"
1266
- version = "0.3.0"
1313
+ version = "0.5.0"
1267
1314
  source = "registry+https://github.com/rust-lang/crates.io-index"
1268
- checksum = "96f99990457915af1f444900003ffd5a9d3ab2e5337b06d681e56ca371b3e11f"
1315
+ checksum = "594fd570fecc994ef602b96214f9d6c8ae11e60e29e37e89ab90af7f6b7f9d00"
1269
1316
  dependencies = [
1270
1317
  "monch",
1271
1318
  "once_cell",
@@ -1276,25 +1323,43 @@ dependencies = [
1276
1323
 
1277
1324
  [[package]]
1278
1325
  name = "deno_tls"
1279
- version = "0.102.0"
1326
+ version = "0.106.0"
1280
1327
  source = "registry+https://github.com/rust-lang/crates.io-index"
1281
- checksum = "010ce5e0a920b2364c75a9e38bcd3344bfe55a6b6cd9ef6717d78e5478f9bcb3"
1328
+ checksum = "3385b41563d9c4f62ab41c5a154670c3468f02918fd43daea78a2905912a4e83"
1282
1329
  dependencies = [
1283
1330
  "deno_core",
1284
1331
  "once_cell",
1285
1332
  "rustls",
1286
1333
  "rustls-native-certs",
1287
1334
  "rustls-pemfile",
1335
+ "rustls-webpki",
1288
1336
  "serde",
1289
- "webpki",
1290
- "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",
1291
1356
  ]
1292
1357
 
1293
1358
  [[package]]
1294
1359
  name = "deno_url"
1295
- version = "0.115.0"
1360
+ version = "0.119.0"
1296
1361
  source = "registry+https://github.com/rust-lang/crates.io-index"
1297
- checksum = "20490fff3b0f8c176a815e26371ff23313ea7f39cd51057701524c5b6fc36f6c"
1362
+ checksum = "df3885daa41f0236c622801aa7e7b6efdff1e253fbaa941eb5087ec3e7339114"
1298
1363
  dependencies = [
1299
1364
  "deno_core",
1300
1365
  "serde",
@@ -1303,35 +1368,37 @@ dependencies = [
1303
1368
 
1304
1369
  [[package]]
1305
1370
  name = "deno_web"
1306
- version = "0.146.0"
1371
+ version = "0.150.0"
1307
1372
  source = "registry+https://github.com/rust-lang/crates.io-index"
1308
- checksum = "1dc8dda6e1337d4739ae9e94d75521689824d82a7deb154a2972b6eedac64507"
1373
+ checksum = "227c8b22e230c85a7cbc5632a6ce81959d277deabd2dfc015dda332c33b1a20d"
1309
1374
  dependencies = [
1310
1375
  "async-trait",
1311
1376
  "base64-simd",
1377
+ "bytes",
1312
1378
  "deno_core",
1313
1379
  "encoding_rs",
1314
1380
  "flate2",
1381
+ "futures",
1315
1382
  "serde",
1316
1383
  "tokio",
1317
1384
  "uuid",
1318
- "windows-sys 0.48.0",
1385
+ "windows-sys",
1319
1386
  ]
1320
1387
 
1321
1388
  [[package]]
1322
1389
  name = "deno_webidl"
1323
- version = "0.115.0"
1390
+ version = "0.119.0"
1324
1391
  source = "registry+https://github.com/rust-lang/crates.io-index"
1325
- checksum = "73159d81053ead02e938b46d4bb7224c8e7cf25273ac16a250fb45bb09af7635"
1392
+ checksum = "26983f124cb3d641d940eb2636a103f4907f02b4cd3b52e3acd8365f20a33c08"
1326
1393
  dependencies = [
1327
1394
  "deno_core",
1328
1395
  ]
1329
1396
 
1330
1397
  [[package]]
1331
1398
  name = "deno_websocket"
1332
- version = "0.120.0"
1399
+ version = "0.124.0"
1333
1400
  source = "registry+https://github.com/rust-lang/crates.io-index"
1334
- checksum = "7ff7e0e7ce26323a609b0ff3ab508209a6499133e73e3e371afb350e1e4a0099"
1401
+ checksum = "57cd8a4b97bf577f291fd3d5a0a4e9ff4aa880d9817d6aef72c02570211007d4"
1335
1402
  dependencies = [
1336
1403
  "bytes",
1337
1404
  "deno_core",
@@ -1339,7 +1406,7 @@ dependencies = [
1339
1406
  "deno_tls",
1340
1407
  "fastwebsockets",
1341
1408
  "http",
1342
- "hyper 0.14.26",
1409
+ "hyper 0.14.27",
1343
1410
  "once_cell",
1344
1411
  "serde",
1345
1412
  "tokio",
@@ -1348,9 +1415,9 @@ dependencies = [
1348
1415
 
1349
1416
  [[package]]
1350
1417
  name = "deno_webstorage"
1351
- version = "0.110.0"
1418
+ version = "0.114.0"
1352
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1353
- checksum = "55ec19fba3273d180e91ddb3cefcd664376993e19dd15cf2955731c39f7d14a5"
1420
+ checksum = "1d0909de090c65cae77db5aacc4daa07e6c4ac048bf2d266d49f8142fe560ccf"
1354
1421
  dependencies = [
1355
1422
  "deno_core",
1356
1423
  "deno_web",
@@ -1371,9 +1438,9 @@ dependencies = [
1371
1438
 
1372
1439
  [[package]]
1373
1440
  name = "der"
1374
- version = "0.7.6"
1441
+ version = "0.7.8"
1375
1442
  source = "registry+https://github.com/rust-lang/crates.io-index"
1376
- checksum = "56acb310e15652100da43d130af8d97b509e95af61aab1c5a7939ef24337ee17"
1443
+ checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
1377
1444
  dependencies = [
1378
1445
  "const-oid",
1379
1446
  "pem-rfc7468 0.7.0",
@@ -1394,6 +1461,12 @@ dependencies = [
1394
1461
  "rusticata-macros",
1395
1462
  ]
1396
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
+
1397
1470
  [[package]]
1398
1471
  name = "derive_more"
1399
1472
  version = "0.99.17"
@@ -1401,8 +1474,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
1474
  checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
1402
1475
  dependencies = [
1403
1476
  "convert_case",
1404
- "proc-macro2 1.0.66",
1405
- "quote 1.0.28",
1477
+ "proc-macro2 1.0.67",
1478
+ "quote 1.0.33",
1406
1479
  "rustc_version 0.4.0",
1407
1480
  "syn 1.0.109",
1408
1481
  ]
@@ -1452,7 +1525,7 @@ dependencies = [
1452
1525
  "libc",
1453
1526
  "option-ext",
1454
1527
  "redox_users",
1455
- "windows-sys 0.48.0",
1528
+ "windows-sys",
1456
1529
  ]
1457
1530
 
1458
1531
  [[package]]
@@ -1461,9 +1534,9 @@ version = "0.2.4"
1461
1534
  source = "registry+https://github.com/rust-lang/crates.io-index"
1462
1535
  checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
1463
1536
  dependencies = [
1464
- "proc-macro2 1.0.66",
1465
- "quote 1.0.28",
1466
- "syn 2.0.29",
1537
+ "proc-macro2 1.0.67",
1538
+ "quote 1.0.33",
1539
+ "syn 2.0.37",
1467
1540
  ]
1468
1541
 
1469
1542
  [[package]]
@@ -1497,9 +1570,9 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
1497
1570
 
1498
1571
  [[package]]
1499
1572
  name = "dprint-swc-ext"
1500
- version = "0.10.0"
1573
+ version = "0.12.0"
1501
1574
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
- checksum = "dd4dda8a1b920e8be367aeaad035753d21bb69b3c50515afb41ab1eefbb886b5"
1575
+ checksum = "6a0a2492465344a58a37ae119de59e81fe5a2885f2711c7b5048ef0dfa14ce42"
1503
1576
  dependencies = [
1504
1577
  "bumpalo",
1505
1578
  "num-bigint",
@@ -1544,12 +1617,12 @@ dependencies = [
1544
1617
 
1545
1618
  [[package]]
1546
1619
  name = "dssim-core"
1547
- version = "3.2.6"
1620
+ version = "3.2.7"
1548
1621
  source = "registry+https://github.com/rust-lang/crates.io-index"
1549
- checksum = "60aa0237471586cfb40481b3855a897b86d380eae78fe852d844ab1e3d1d896b"
1622
+ checksum = "1388544389475fcfd718b35a286af17cb215202af26bf2067d0e1024adbc3fe9"
1550
1623
  dependencies = [
1551
1624
  "imgref",
1552
- "itertools",
1625
+ "itertools 0.11.0",
1553
1626
  "rayon",
1554
1627
  "rgb",
1555
1628
  ]
@@ -1562,9 +1635,9 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
1562
1635
 
1563
1636
  [[package]]
1564
1637
  name = "dyn-clone"
1565
- version = "1.0.11"
1638
+ version = "1.0.14"
1566
1639
  source = "registry+https://github.com/rust-lang/crates.io-index"
1567
- checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
1640
+ checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd"
1568
1641
 
1569
1642
  [[package]]
1570
1643
  name = "dynasm"
@@ -1576,8 +1649,8 @@ dependencies = [
1576
1649
  "byteorder",
1577
1650
  "lazy_static",
1578
1651
  "proc-macro-error",
1579
- "proc-macro2 1.0.66",
1580
- "quote 1.0.28",
1652
+ "proc-macro2 1.0.67",
1653
+ "quote 1.0.33",
1581
1654
  "syn 1.0.109",
1582
1655
  ]
1583
1656
 
@@ -1594,9 +1667,9 @@ dependencies = [
1594
1667
 
1595
1668
  [[package]]
1596
1669
  name = "ecb"
1597
- version = "0.1.1"
1670
+ version = "0.1.2"
1598
1671
  source = "registry+https://github.com/rust-lang/crates.io-index"
1599
- checksum = "17fd84ba81a904351ee27bbccb4aa2461e1cca04176a63ab4f8ca087757681a2"
1672
+ checksum = "1a8bfa975b1aec2145850fcaa1c6fe269a16578c44705a532ae3edc92b8881c7"
1600
1673
  dependencies = [
1601
1674
  "cipher",
1602
1675
  ]
@@ -1615,11 +1688,11 @@ dependencies = [
1615
1688
 
1616
1689
  [[package]]
1617
1690
  name = "ecdsa"
1618
- version = "0.16.7"
1691
+ version = "0.16.8"
1619
1692
  source = "registry+https://github.com/rust-lang/crates.io-index"
1620
- checksum = "0997c976637b606099b9985693efa3581e84e41f5c11ba5255f88711058ad428"
1693
+ checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4"
1621
1694
  dependencies = [
1622
- "der 0.7.6",
1695
+ "der 0.7.8",
1623
1696
  "digest 0.10.7",
1624
1697
  "elliptic-curve 0.13.5",
1625
1698
  "rfc6979 0.4.0",
@@ -1629,9 +1702,9 @@ dependencies = [
1629
1702
 
1630
1703
  [[package]]
1631
1704
  name = "either"
1632
- version = "1.8.1"
1705
+ version = "1.9.0"
1633
1706
  source = "registry+https://github.com/rust-lang/crates.io-index"
1634
- checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
1707
+ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
1635
1708
 
1636
1709
  [[package]]
1637
1710
  name = "elliptic-curve"
@@ -1662,7 +1735,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
1735
  checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b"
1663
1736
  dependencies = [
1664
1737
  "base16ct 0.2.0",
1665
- "crypto-bigint 0.5.2",
1738
+ "crypto-bigint 0.5.3",
1666
1739
  "digest 0.10.7",
1667
1740
  "ff 0.13.0",
1668
1741
  "generic-array 0.14.7",
@@ -1671,16 +1744,16 @@ dependencies = [
1671
1744
  "pem-rfc7468 0.7.0",
1672
1745
  "pkcs8 0.10.2",
1673
1746
  "rand_core 0.6.4",
1674
- "sec1 0.7.2",
1747
+ "sec1 0.7.3",
1675
1748
  "subtle",
1676
1749
  "zeroize",
1677
1750
  ]
1678
1751
 
1679
1752
  [[package]]
1680
1753
  name = "encoding_rs"
1681
- version = "0.8.31"
1754
+ version = "0.8.33"
1682
1755
  source = "registry+https://github.com/rust-lang/crates.io-index"
1683
- checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
1756
+ checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
1684
1757
  dependencies = [
1685
1758
  "cfg-if",
1686
1759
  ]
@@ -1692,8 +1765,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
1765
  checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
1693
1766
  dependencies = [
1694
1767
  "heck",
1695
- "proc-macro2 1.0.66",
1696
- "quote 1.0.28",
1768
+ "proc-macro2 1.0.67",
1769
+ "quote 1.0.33",
1697
1770
  "syn 1.0.109",
1698
1771
  ]
1699
1772
 
@@ -1712,9 +1785,9 @@ dependencies = [
1712
1785
 
1713
1786
  [[package]]
1714
1787
  name = "equivalent"
1715
- version = "1.0.0"
1788
+ version = "1.0.1"
1716
1789
  source = "registry+https://github.com/rust-lang/crates.io-index"
1717
- checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
1790
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1718
1791
 
1719
1792
  [[package]]
1720
1793
  name = "errno"
@@ -1729,13 +1802,13 @@ dependencies = [
1729
1802
 
1730
1803
  [[package]]
1731
1804
  name = "errno"
1732
- version = "0.3.1"
1805
+ version = "0.3.3"
1733
1806
  source = "registry+https://github.com/rust-lang/crates.io-index"
1734
- checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
1807
+ checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd"
1735
1808
  dependencies = [
1736
1809
  "errno-dragonfly",
1737
1810
  "libc",
1738
- "windows-sys 0.48.0",
1811
+ "windows-sys",
1739
1812
  ]
1740
1813
 
1741
1814
  [[package]]
@@ -1750,9 +1823,9 @@ dependencies = [
1750
1823
 
1751
1824
  [[package]]
1752
1825
  name = "exr"
1753
- version = "1.7.0"
1826
+ version = "1.71.0"
1754
1827
  source = "registry+https://github.com/rust-lang/crates.io-index"
1755
- checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18"
1828
+ checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8"
1756
1829
  dependencies = [
1757
1830
  "bit_field",
1758
1831
  "flume",
@@ -1778,9 +1851,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
1778
1851
 
1779
1852
  [[package]]
1780
1853
  name = "fallible_collections"
1781
- version = "0.4.8"
1854
+ version = "0.4.9"
1782
1855
  source = "registry+https://github.com/rust-lang/crates.io-index"
1783
- checksum = "618bf220e692a59c50e7b281149f53c3fe93e0cf0b40c050fc2af8c9ecb28505"
1856
+ checksum = "a88c69768c0a15262df21899142bc6df9b9b823546d4b4b9a7bc2d6c448ec6fd"
1784
1857
  dependencies = [
1785
1858
  "hashbrown 0.13.2",
1786
1859
  ]
@@ -1797,8 +1870,8 @@ version = "0.4.4"
1797
1870
  source = "registry+https://github.com/rust-lang/crates.io-index"
1798
1871
  checksum = "9e6185b6dc9dddc4db0dedd2e213047e93bcbf7a0fb092abc4c4e4f3195efdb4"
1799
1872
  dependencies = [
1800
- "base64 0.21.2",
1801
- "hyper 0.14.26",
1873
+ "base64 0.21.4",
1874
+ "hyper 0.14.27",
1802
1875
  "pin-project",
1803
1876
  "rand",
1804
1877
  "sha1",
@@ -1839,27 +1912,33 @@ dependencies = [
1839
1912
 
1840
1913
  [[package]]
1841
1914
  name = "fiat-crypto"
1842
- version = "0.1.20"
1915
+ version = "0.2.1"
1843
1916
  source = "registry+https://github.com/rust-lang/crates.io-index"
1844
- checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77"
1917
+ checksum = "d0870c84016d4b481be5c9f323c24f65e31e901ae618f0e80f4308fb00de1d2d"
1845
1918
 
1846
1919
  [[package]]
1847
1920
  name = "filetime"
1848
- version = "0.2.21"
1921
+ version = "0.2.22"
1849
1922
  source = "registry+https://github.com/rust-lang/crates.io-index"
1850
- checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
1923
+ checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
1851
1924
  dependencies = [
1852
1925
  "cfg-if",
1853
1926
  "libc",
1854
- "redox_syscall 0.2.16",
1855
- "windows-sys 0.48.0",
1927
+ "redox_syscall 0.3.5",
1928
+ "windows-sys",
1856
1929
  ]
1857
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
+
1858
1937
  [[package]]
1859
1938
  name = "flate2"
1860
- version = "1.0.26"
1939
+ version = "1.0.27"
1861
1940
  source = "registry+https://github.com/rust-lang/crates.io-index"
1862
- checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
1941
+ checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010"
1863
1942
  dependencies = [
1864
1943
  "crc32fast",
1865
1944
  "libz-ng-sys",
@@ -1877,14 +1956,10 @@ dependencies = [
1877
1956
 
1878
1957
  [[package]]
1879
1958
  name = "flume"
1880
- version = "0.10.14"
1959
+ version = "0.11.0"
1881
1960
  source = "registry+https://github.com/rust-lang/crates.io-index"
1882
- checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
1961
+ checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
1883
1962
  dependencies = [
1884
- "futures-core",
1885
- "futures-sink",
1886
- "nanorand",
1887
- "pin-project",
1888
1963
  "spin 0.9.8",
1889
1964
  ]
1890
1965
 
@@ -1895,7 +1970,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
1970
  checksum = "a3afa7516fdcfd8e5e93a938f8fec857785ced190a1f62d842d1fe1ffbe22ba8"
1896
1971
  dependencies = [
1897
1972
  "http",
1898
- "itertools",
1973
+ "itertools 0.10.5",
1899
1974
  "thiserror",
1900
1975
  ]
1901
1976
 
@@ -1907,9 +1982,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1907
1982
 
1908
1983
  [[package]]
1909
1984
  name = "fontconfig-parser"
1910
- version = "0.5.2"
1985
+ version = "0.5.3"
1911
1986
  source = "registry+https://github.com/rust-lang/crates.io-index"
1912
- checksum = "4ab2e12762761366dcb876ab8b6e0cfa4797ddcd890575919f008b5ba655672a"
1987
+ checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4"
1913
1988
  dependencies = [
1914
1989
  "roxmltree",
1915
1990
  ]
@@ -1925,7 +2000,7 @@ dependencies = [
1925
2000
  "memmap2 0.6.2",
1926
2001
  "slotmap",
1927
2002
  "tinyvec",
1928
- "ttf-parser 0.19.1",
2003
+ "ttf-parser 0.19.2",
1929
2004
  ]
1930
2005
 
1931
2006
  [[package]]
@@ -1944,9 +2019,9 @@ version = "0.2.3"
1944
2019
  source = "registry+https://github.com/rust-lang/crates.io-index"
1945
2020
  checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
1946
2021
  dependencies = [
1947
- "proc-macro2 1.0.66",
1948
- "quote 1.0.28",
1949
- "syn 2.0.29",
2022
+ "proc-macro2 1.0.67",
2023
+ "quote 1.0.33",
2024
+ "syn 2.0.37",
1950
2025
  ]
1951
2026
 
1952
2027
  [[package]]
@@ -1966,14 +2041,14 @@ dependencies = [
1966
2041
 
1967
2042
  [[package]]
1968
2043
  name = "from_variant"
1969
- version = "0.1.5"
2044
+ version = "0.1.6"
1970
2045
  source = "registry+https://github.com/rust-lang/crates.io-index"
1971
- checksum = "1d449976075322384507443937df2f1d5577afbf4282f12a5a66ef29fa3e6307"
2046
+ checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f"
1972
2047
  dependencies = [
1973
- "pmutil 0.5.3",
1974
- "proc-macro2 1.0.66",
2048
+ "pmutil",
2049
+ "proc-macro2 1.0.67",
1975
2050
  "swc_macros_common",
1976
- "syn 1.0.109",
2051
+ "syn 2.0.37",
1977
2052
  ]
1978
2053
 
1979
2054
  [[package]]
@@ -2060,9 +2135,9 @@ version = "0.3.28"
2060
2135
  source = "registry+https://github.com/rust-lang/crates.io-index"
2061
2136
  checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2062
2137
  dependencies = [
2063
- "proc-macro2 1.0.66",
2064
- "quote 1.0.28",
2065
- "syn 2.0.29",
2138
+ "proc-macro2 1.0.67",
2139
+ "quote 1.0.33",
2140
+ "syn 2.0.37",
2066
2141
  ]
2067
2142
 
2068
2143
  [[package]]
@@ -2158,10 +2233,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
2233
  checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2159
2234
  dependencies = [
2160
2235
  "cfg-if",
2161
- "js-sys",
2162
2236
  "libc",
2163
2237
  "wasi 0.11.0+wasi-snapshot-preview1",
2164
- "wasm-bindgen",
2165
2238
  ]
2166
2239
 
2167
2240
  [[package]]
@@ -2190,6 +2263,12 @@ version = "0.28.0"
2190
2263
  source = "registry+https://github.com/rust-lang/crates.io-index"
2191
2264
  checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
2192
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
+
2193
2272
  [[package]]
2194
2273
  name = "group"
2195
2274
  version = "0.12.1"
@@ -2214,9 +2293,9 @@ dependencies = [
2214
2293
 
2215
2294
  [[package]]
2216
2295
  name = "h2"
2217
- version = "0.3.19"
2296
+ version = "0.3.21"
2218
2297
  source = "registry+https://github.com/rust-lang/crates.io-index"
2219
- checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
2298
+ checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
2220
2299
  dependencies = [
2221
2300
  "bytes",
2222
2301
  "fnv",
@@ -2252,7 +2331,7 @@ version = "0.13.2"
2252
2331
  source = "registry+https://github.com/rust-lang/crates.io-index"
2253
2332
  checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2254
2333
  dependencies = [
2255
- "ahash 0.8.3",
2334
+ "ahash",
2256
2335
  ]
2257
2336
 
2258
2337
  [[package]]
@@ -2261,15 +2340,15 @@ version = "0.14.0"
2261
2340
  source = "registry+https://github.com/rust-lang/crates.io-index"
2262
2341
  checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2263
2342
  dependencies = [
2264
- "ahash 0.8.3",
2343
+ "ahash",
2265
2344
  "allocator-api2",
2266
2345
  ]
2267
2346
 
2268
2347
  [[package]]
2269
2348
  name = "hashlink"
2270
- version = "0.8.3"
2349
+ version = "0.8.4"
2271
2350
  source = "registry+https://github.com/rust-lang/crates.io-index"
2272
- checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f"
2351
+ checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
2273
2352
  dependencies = [
2274
2353
  "hashbrown 0.14.0",
2275
2354
  ]
@@ -2282,27 +2361,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2282
2361
 
2283
2362
  [[package]]
2284
2363
  name = "hermit-abi"
2285
- version = "0.1.19"
2286
- source = "registry+https://github.com/rust-lang/crates.io-index"
2287
- checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2288
- dependencies = [
2289
- "libc",
2290
- ]
2291
-
2292
- [[package]]
2293
- name = "hermit-abi"
2294
- version = "0.2.6"
2295
- source = "registry+https://github.com/rust-lang/crates.io-index"
2296
- checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
2297
- dependencies = [
2298
- "libc",
2299
- ]
2300
-
2301
- [[package]]
2302
- name = "hermit-abi"
2303
- version = "0.3.1"
2364
+ version = "0.3.3"
2304
2365
  source = "registry+https://github.com/rust-lang/crates.io-index"
2305
- checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2366
+ checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2306
2367
 
2307
2368
  [[package]]
2308
2369
  name = "hex"
@@ -2328,6 +2389,15 @@ dependencies = [
2328
2389
  "digest 0.10.7",
2329
2390
  ]
2330
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
+
2331
2401
  [[package]]
2332
2402
  name = "hostname"
2333
2403
  version = "0.3.1"
@@ -2379,9 +2449,9 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2379
2449
 
2380
2450
  [[package]]
2381
2451
  name = "httpdate"
2382
- version = "1.0.2"
2452
+ version = "1.0.3"
2383
2453
  source = "registry+https://github.com/rust-lang/crates.io-index"
2384
- checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2454
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2385
2455
 
2386
2456
  [[package]]
2387
2457
  name = "humantime"
@@ -2391,9 +2461,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2391
2461
 
2392
2462
  [[package]]
2393
2463
  name = "hyper"
2394
- version = "0.14.26"
2464
+ version = "0.14.27"
2395
2465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2396
- checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
2466
+ checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2397
2467
  dependencies = [
2398
2468
  "bytes",
2399
2469
  "futures-channel",
@@ -2436,17 +2506,41 @@ dependencies = [
2436
2506
 
2437
2507
  [[package]]
2438
2508
  name = "hyper-rustls"
2439
- version = "0.24.0"
2509
+ version = "0.24.1"
2440
2510
  source = "registry+https://github.com/rust-lang/crates.io-index"
2441
- checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
2511
+ checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
2442
2512
  dependencies = [
2513
+ "futures-util",
2443
2514
  "http",
2444
- "hyper 0.14.26",
2515
+ "hyper 0.14.27",
2445
2516
  "rustls",
2446
2517
  "tokio",
2447
2518
  "tokio-rustls",
2448
2519
  ]
2449
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
+
2450
2544
  [[package]]
2451
2545
  name = "idna"
2452
2546
  version = "0.2.3"
@@ -2523,7 +2617,6 @@ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2523
2617
  dependencies = [
2524
2618
  "autocfg",
2525
2619
  "hashbrown 0.12.3",
2526
- "serde",
2527
2620
  ]
2528
2621
 
2529
2622
  [[package]]
@@ -2534,6 +2627,7 @@ checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
2534
2627
  dependencies = [
2535
2628
  "equivalent",
2536
2629
  "hashbrown 0.14.0",
2630
+ "serde",
2537
2631
  ]
2538
2632
 
2539
2633
  [[package]]
@@ -2572,58 +2666,46 @@ dependencies = [
2572
2666
  "generic-array 0.14.7",
2573
2667
  ]
2574
2668
 
2575
- [[package]]
2576
- name = "io-lifetimes"
2577
- version = "1.0.11"
2578
- source = "registry+https://github.com/rust-lang/crates.io-index"
2579
- checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2580
- dependencies = [
2581
- "hermit-abi 0.3.1",
2582
- "libc",
2583
- "windows-sys 0.48.0",
2584
- ]
2585
-
2586
2669
  [[package]]
2587
2670
  name = "ipconfig"
2588
2671
  version = "0.3.2"
2589
2672
  source = "registry+https://github.com/rust-lang/crates.io-index"
2590
2673
  checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
2591
2674
  dependencies = [
2592
- "socket2 0.5.3",
2675
+ "socket2 0.5.4",
2593
2676
  "widestring",
2594
- "windows-sys 0.48.0",
2677
+ "windows-sys",
2595
2678
  "winreg",
2596
2679
  ]
2597
2680
 
2598
2681
  [[package]]
2599
2682
  name = "ipnet"
2600
- version = "2.7.2"
2683
+ version = "2.8.0"
2601
2684
  source = "registry+https://github.com/rust-lang/crates.io-index"
2602
- checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2685
+ checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2603
2686
 
2604
2687
  [[package]]
2605
2688
  name = "is-macro"
2606
- version = "0.2.2"
2689
+ version = "0.3.0"
2607
2690
  source = "registry+https://github.com/rust-lang/crates.io-index"
2608
- checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20"
2691
+ checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e"
2609
2692
  dependencies = [
2610
2693
  "Inflector",
2611
- "pmutil 0.5.3",
2612
- "proc-macro2 1.0.66",
2613
- "quote 1.0.28",
2614
- "syn 1.0.109",
2694
+ "pmutil",
2695
+ "proc-macro2 1.0.67",
2696
+ "quote 1.0.33",
2697
+ "syn 2.0.37",
2615
2698
  ]
2616
2699
 
2617
2700
  [[package]]
2618
2701
  name = "is-terminal"
2619
- version = "0.4.7"
2702
+ version = "0.4.9"
2620
2703
  source = "registry+https://github.com/rust-lang/crates.io-index"
2621
- checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
2704
+ checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
2622
2705
  dependencies = [
2623
- "hermit-abi 0.3.1",
2624
- "io-lifetimes",
2625
- "rustix 0.37.20",
2626
- "windows-sys 0.48.0",
2706
+ "hermit-abi",
2707
+ "rustix",
2708
+ "windows-sys",
2627
2709
  ]
2628
2710
 
2629
2711
  [[package]]
@@ -2635,11 +2717,20 @@ dependencies = [
2635
2717
  "either",
2636
2718
  ]
2637
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
+
2638
2729
  [[package]]
2639
2730
  name = "itoa"
2640
- version = "1.0.6"
2731
+ version = "1.0.9"
2641
2732
  source = "registry+https://github.com/rust-lang/crates.io-index"
2642
- checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2733
+ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2643
2734
 
2644
2735
  [[package]]
2645
2736
  name = "jobserver"
@@ -2670,9 +2761,9 @@ dependencies = [
2670
2761
 
2671
2762
  [[package]]
2672
2763
  name = "kqueue"
2673
- version = "1.0.7"
2764
+ version = "1.0.8"
2674
2765
  source = "registry+https://github.com/rust-lang/crates.io-index"
2675
- checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98"
2766
+ checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
2676
2767
  dependencies = [
2677
2768
  "kqueue-sys",
2678
2769
  "libc",
@@ -2680,9 +2771,9 @@ dependencies = [
2680
2771
 
2681
2772
  [[package]]
2682
2773
  name = "kqueue-sys"
2683
- version = "1.0.3"
2774
+ version = "1.0.4"
2684
2775
  source = "registry+https://github.com/rust-lang/crates.io-index"
2685
- checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
2776
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
2686
2777
  dependencies = [
2687
2778
  "bitflags 1.3.2",
2688
2779
  "libc",
@@ -2699,9 +2790,9 @@ dependencies = [
2699
2790
 
2700
2791
  [[package]]
2701
2792
  name = "lazy-regex"
2702
- version = "2.5.0"
2793
+ version = "3.0.2"
2703
2794
  source = "registry+https://github.com/rust-lang/crates.io-index"
2704
- checksum = "ff63c423c68ea6814b7da9e88ce585f793c87ddd9e78f646970891769c8235d4"
2795
+ checksum = "e723bd417b2df60a0f6a2b6825f297ea04b245d4ba52b5a22cb679bdf58b05fa"
2705
2796
  dependencies = [
2706
2797
  "lazy-regex-proc_macros",
2707
2798
  "once_cell",
@@ -2710,14 +2801,14 @@ dependencies = [
2710
2801
 
2711
2802
  [[package]]
2712
2803
  name = "lazy-regex-proc_macros"
2713
- version = "2.4.1"
2804
+ version = "3.0.1"
2714
2805
  source = "registry+https://github.com/rust-lang/crates.io-index"
2715
- checksum = "8edfc11b8f56ce85e207e62ea21557cfa09bb24a8f6b04ae181b086ff8611c22"
2806
+ checksum = "0f0a1d9139f0ee2e862e08a9c5d0ba0470f2aa21cd1e1aa1b1562f83116c725f"
2716
2807
  dependencies = [
2717
- "proc-macro2 1.0.66",
2718
- "quote 1.0.28",
2808
+ "proc-macro2 1.0.67",
2809
+ "quote 1.0.33",
2719
2810
  "regex",
2720
- "syn 1.0.109",
2811
+ "syn 2.0.37",
2721
2812
  ]
2722
2813
 
2723
2814
  [[package]]
@@ -2731,19 +2822,20 @@ dependencies = [
2731
2822
 
2732
2823
  [[package]]
2733
2824
  name = "lcms2"
2734
- version = "5.6.0"
2825
+ version = "6.0.0"
2735
2826
  source = "registry+https://github.com/rust-lang/crates.io-index"
2736
- checksum = "b9d50a4d00d909da0ec023ab34ea09bf3b3b79b5a36b3e0da3a305112edaf150"
2827
+ checksum = "897a7716b253bb5c58ac17a1a74ddda694f57fcf1c8a65799087783592c71092"
2737
2828
  dependencies = [
2829
+ "bytemuck",
2738
2830
  "foreign-types",
2739
2831
  "lcms2-sys",
2740
2832
  ]
2741
2833
 
2742
2834
  [[package]]
2743
2835
  name = "lcms2-sys"
2744
- version = "4.0.1"
2836
+ version = "4.0.3"
2745
2837
  source = "registry+https://github.com/rust-lang/crates.io-index"
2746
- checksum = "7abb8aac1a07fd8cdffaa25461a3873a7bf7164cd20b849d44a183a1348d682f"
2838
+ checksum = "137dae56197ab9e66729ff73e2942e26f16f9ddcd14a53295c35f53dcd067b58"
2747
2839
  dependencies = [
2748
2840
  "cc",
2749
2841
  "dunce",
@@ -2757,84 +2849,11 @@ version = "0.5.2"
2757
2849
  source = "registry+https://github.com/rust-lang/crates.io-index"
2758
2850
  checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
2759
2851
 
2760
- [[package]]
2761
- name = "lexical"
2762
- version = "6.1.1"
2763
- source = "registry+https://github.com/rust-lang/crates.io-index"
2764
- checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
2765
- dependencies = [
2766
- "lexical-core",
2767
- ]
2768
-
2769
- [[package]]
2770
- name = "lexical-core"
2771
- version = "0.8.5"
2772
- source = "registry+https://github.com/rust-lang/crates.io-index"
2773
- checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
2774
- dependencies = [
2775
- "lexical-parse-float",
2776
- "lexical-parse-integer",
2777
- "lexical-util",
2778
- "lexical-write-float",
2779
- "lexical-write-integer",
2780
- ]
2781
-
2782
- [[package]]
2783
- name = "lexical-parse-float"
2784
- version = "0.8.5"
2785
- source = "registry+https://github.com/rust-lang/crates.io-index"
2786
- checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
2787
- dependencies = [
2788
- "lexical-parse-integer",
2789
- "lexical-util",
2790
- "static_assertions",
2791
- ]
2792
-
2793
- [[package]]
2794
- name = "lexical-parse-integer"
2795
- version = "0.8.6"
2796
- source = "registry+https://github.com/rust-lang/crates.io-index"
2797
- checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
2798
- dependencies = [
2799
- "lexical-util",
2800
- "static_assertions",
2801
- ]
2802
-
2803
- [[package]]
2804
- name = "lexical-util"
2805
- version = "0.8.5"
2806
- source = "registry+https://github.com/rust-lang/crates.io-index"
2807
- checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
2808
- dependencies = [
2809
- "static_assertions",
2810
- ]
2811
-
2812
- [[package]]
2813
- name = "lexical-write-float"
2814
- version = "0.8.5"
2815
- source = "registry+https://github.com/rust-lang/crates.io-index"
2816
- checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
2817
- dependencies = [
2818
- "lexical-util",
2819
- "lexical-write-integer",
2820
- "static_assertions",
2821
- ]
2822
-
2823
- [[package]]
2824
- name = "lexical-write-integer"
2825
- version = "0.8.5"
2826
- source = "registry+https://github.com/rust-lang/crates.io-index"
2827
- checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
2828
- dependencies = [
2829
- "lexical-util",
2830
- "static_assertions",
2831
- ]
2832
-
2833
2852
  [[package]]
2834
2853
  name = "libc"
2835
- version = "0.2.146"
2854
+ version = "0.2.148"
2836
2855
  source = "registry+https://github.com/rust-lang/crates.io-index"
2837
- checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
2856
+ checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
2838
2857
 
2839
2858
  [[package]]
2840
2859
  name = "libffi"
@@ -2894,9 +2913,9 @@ dependencies = [
2894
2913
 
2895
2914
  [[package]]
2896
2915
  name = "libz-sys"
2897
- version = "1.1.9"
2916
+ version = "1.1.12"
2898
2917
  source = "registry+https://github.com/rust-lang/crates.io-index"
2899
- checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
2918
+ checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
2900
2919
  dependencies = [
2901
2920
  "cc",
2902
2921
  "libc",
@@ -2912,21 +2931,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2912
2931
 
2913
2932
  [[package]]
2914
2933
  name = "linux-raw-sys"
2915
- version = "0.3.8"
2916
- source = "registry+https://github.com/rust-lang/crates.io-index"
2917
- checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2918
-
2919
- [[package]]
2920
- name = "linux-raw-sys"
2921
- version = "0.4.5"
2934
+ version = "0.4.7"
2922
2935
  source = "registry+https://github.com/rust-lang/crates.io-index"
2923
- checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
2936
+ checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128"
2924
2937
 
2925
2938
  [[package]]
2926
2939
  name = "load_image"
2927
- version = "3.0.3"
2940
+ version = "3.1.2"
2928
2941
  source = "registry+https://github.com/rust-lang/crates.io-index"
2929
- checksum = "5f87f0f354b901237de8e6d4c0f050a3aa85b83a458fea9796f993a08a67c3cc"
2942
+ checksum = "4ce4ddf55fffd47e0764d74a58d0e80c32d93bfb149b0c707532e92c4f97d9d7"
2930
2943
  dependencies = [
2931
2944
  "bytemuck",
2932
2945
  "imgref",
@@ -2950,9 +2963,9 @@ dependencies = [
2950
2963
 
2951
2964
  [[package]]
2952
2965
  name = "lodepng"
2953
- version = "3.7.2"
2966
+ version = "3.8.1"
2954
2967
  source = "registry+https://github.com/rust-lang/crates.io-index"
2955
- checksum = "f0ad39f75bbaa4b10bb6f2316543632a8046a5bcf9c785488d79720b21f044f8"
2968
+ checksum = "e113c98c2de55d874de965268d29e41b5873b720f61434d187a10a158fb3f65e"
2956
2969
  dependencies = [
2957
2970
  "crc32fast",
2958
2971
  "fallible_collections",
@@ -2963,9 +2976,9 @@ dependencies = [
2963
2976
 
2964
2977
  [[package]]
2965
2978
  name = "log"
2966
- version = "0.4.19"
2979
+ version = "0.4.20"
2967
2980
  source = "registry+https://github.com/rust-lang/crates.io-index"
2968
- checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2981
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2969
2982
 
2970
2983
  [[package]]
2971
2984
  name = "lru-cache"
@@ -2976,6 +2989,12 @@ dependencies = [
2976
2989
  "linked-hash-map",
2977
2990
  ]
2978
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
+
2979
2998
  [[package]]
2980
2999
  name = "match_cfg"
2981
3000
  version = "0.1.0"
@@ -3008,9 +3027,9 @@ dependencies = [
3008
3027
 
3009
3028
  [[package]]
3010
3029
  name = "memchr"
3011
- version = "2.5.0"
3030
+ version = "2.6.3"
3012
3031
  source = "registry+https://github.com/rust-lang/crates.io-index"
3013
- checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
3032
+ checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
3014
3033
 
3015
3034
  [[package]]
3016
3035
  name = "memmap2"
@@ -3038,9 +3057,9 @@ checksum = "a64a92489e2744ce060c349162be1c5f33c6969234104dbd99ddb5feb08b8c15"
3038
3057
 
3039
3058
  [[package]]
3040
3059
  name = "memoffset"
3041
- version = "0.6.5"
3060
+ version = "0.7.1"
3042
3061
  source = "registry+https://github.com/rust-lang/crates.io-index"
3043
- checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
3062
+ checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
3044
3063
  dependencies = [
3045
3064
  "autocfg",
3046
3065
  ]
@@ -3085,7 +3104,7 @@ dependencies = [
3085
3104
  "libc",
3086
3105
  "log",
3087
3106
  "wasi 0.11.0+wasi-snapshot-preview1",
3088
- "windows-sys 0.48.0",
3107
+ "windows-sys",
3089
3108
  ]
3090
3109
 
3091
3110
  [[package]]
@@ -3095,13 +3114,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
3114
  checksum = "4519a88847ba2d5ead3dc53f1060ec6a571de93f325d9c5c4968147382b1cbc3"
3096
3115
 
3097
3116
  [[package]]
3098
- name = "nanorand"
3099
- version = "0.7.0"
3117
+ name = "multimap"
3118
+ version = "0.8.3"
3100
3119
  source = "registry+https://github.com/rust-lang/crates.io-index"
3101
- checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
3102
- dependencies = [
3103
- "getrandom 0.2.10",
3104
- ]
3120
+ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
3105
3121
 
3106
3122
  [[package]]
3107
3123
  name = "netif"
@@ -3121,14 +3137,16 @@ checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
3121
3137
 
3122
3138
  [[package]]
3123
3139
  name = "nix"
3124
- version = "0.24.2"
3140
+ version = "0.26.2"
3125
3141
  source = "registry+https://github.com/rust-lang/crates.io-index"
3126
- checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
3142
+ checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
3127
3143
  dependencies = [
3128
3144
  "bitflags 1.3.2",
3129
3145
  "cfg-if",
3130
3146
  "libc",
3131
- "memoffset 0.6.5",
3147
+ "memoffset 0.7.1",
3148
+ "pin-utils",
3149
+ "static_assertions",
3132
3150
  ]
3133
3151
 
3134
3152
  [[package]]
@@ -3176,9 +3194,9 @@ dependencies = [
3176
3194
 
3177
3195
  [[package]]
3178
3196
  name = "num"
3179
- version = "0.4.0"
3197
+ version = "0.4.1"
3180
3198
  source = "registry+https://github.com/rust-lang/crates.io-index"
3181
- checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
3199
+ checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
3182
3200
  dependencies = [
3183
3201
  "num-bigint",
3184
3202
  "num-complex",
@@ -3190,9 +3208,9 @@ dependencies = [
3190
3208
 
3191
3209
  [[package]]
3192
3210
  name = "num-bigint"
3193
- version = "0.4.3"
3211
+ version = "0.4.4"
3194
3212
  source = "registry+https://github.com/rust-lang/crates.io-index"
3195
- checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
3213
+ checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
3196
3214
  dependencies = [
3197
3215
  "autocfg",
3198
3216
  "num-integer",
@@ -3203,9 +3221,9 @@ dependencies = [
3203
3221
 
3204
3222
  [[package]]
3205
3223
  name = "num-bigint-dig"
3206
- version = "0.8.2"
3224
+ version = "0.8.4"
3207
3225
  source = "registry+https://github.com/rust-lang/crates.io-index"
3208
- checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905"
3226
+ checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
3209
3227
  dependencies = [
3210
3228
  "byteorder",
3211
3229
  "lazy_static",
@@ -3221,9 +3239,9 @@ dependencies = [
3221
3239
 
3222
3240
  [[package]]
3223
3241
  name = "num-complex"
3224
- version = "0.4.3"
3242
+ version = "0.4.4"
3225
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
3226
- checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
3244
+ checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
3227
3245
  dependencies = [
3228
3246
  "num-traits",
3229
3247
  ]
@@ -3263,9 +3281,9 @@ dependencies = [
3263
3281
 
3264
3282
  [[package]]
3265
3283
  name = "num-traits"
3266
- version = "0.2.15"
3284
+ version = "0.2.16"
3267
3285
  source = "registry+https://github.com/rust-lang/crates.io-index"
3268
- checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
3286
+ checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
3269
3287
  dependencies = [
3270
3288
  "autocfg",
3271
3289
  "libm",
@@ -3273,19 +3291,19 @@ dependencies = [
3273
3291
 
3274
3292
  [[package]]
3275
3293
  name = "num_cpus"
3276
- version = "1.15.0"
3294
+ version = "1.16.0"
3277
3295
  source = "registry+https://github.com/rust-lang/crates.io-index"
3278
- checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
3296
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
3279
3297
  dependencies = [
3280
- "hermit-abi 0.2.6",
3298
+ "hermit-abi",
3281
3299
  "libc",
3282
3300
  ]
3283
3301
 
3284
3302
  [[package]]
3285
3303
  name = "object"
3286
- version = "0.32.0"
3304
+ version = "0.32.1"
3287
3305
  source = "registry+https://github.com/rust-lang/crates.io-index"
3288
- checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe"
3306
+ checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
3289
3307
  dependencies = [
3290
3308
  "memchr",
3291
3309
  ]
@@ -3344,7 +3362,7 @@ version = "0.13.2"
3344
3362
  source = "registry+https://github.com/rust-lang/crates.io-index"
3345
3363
  checksum = "30c06436d66652bc2f01ade021592c80a2aad401570a18aa18b82e440d2b9aa1"
3346
3364
  dependencies = [
3347
- "ecdsa 0.16.7",
3365
+ "ecdsa 0.16.8",
3348
3366
  "elliptic-curve 0.13.5",
3349
3367
  "primeorder",
3350
3368
  "sha2",
@@ -3367,7 +3385,7 @@ version = "0.13.2"
3367
3385
  source = "registry+https://github.com/rust-lang/crates.io-index"
3368
3386
  checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
3369
3387
  dependencies = [
3370
- "ecdsa 0.16.7",
3388
+ "ecdsa 0.16.8",
3371
3389
  "elliptic-curve 0.13.5",
3372
3390
  "primeorder",
3373
3391
  "sha2",
@@ -3390,7 +3408,7 @@ version = "0.13.0"
3390
3408
  source = "registry+https://github.com/rust-lang/crates.io-index"
3391
3409
  checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
3392
3410
  dependencies = [
3393
- "ecdsa 0.16.7",
3411
+ "ecdsa 0.16.8",
3394
3412
  "elliptic-curve 0.13.5",
3395
3413
  "primeorder",
3396
3414
  "sha2",
@@ -3444,14 +3462,25 @@ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
3444
3462
 
3445
3463
  [[package]]
3446
3464
  name = "pbkdf2"
3447
- version = "0.12.1"
3465
+ version = "0.12.2"
3448
3466
  source = "registry+https://github.com/rust-lang/crates.io-index"
3449
- checksum = "f0ca0b5a68607598bf3bad68f32227a8164f6254833f84eafaac409cd6746c31"
3467
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
3450
3468
  dependencies = [
3451
3469
  "digest 0.10.7",
3452
3470
  "hmac",
3453
3471
  ]
3454
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
+
3455
3484
  [[package]]
3456
3485
  name = "pem-rfc7468"
3457
3486
  version = "0.6.0"
@@ -3474,7 +3503,17 @@ dependencies = [
3474
3503
  name = "percent-encoding"
3475
3504
  version = "2.3.0"
3476
3505
  source = "registry+https://github.com/rust-lang/crates.io-index"
3477
- checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
3506
+ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
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
+ ]
3478
3517
 
3479
3518
  [[package]]
3480
3519
  name = "phf"
@@ -3506,8 +3545,8 @@ dependencies = [
3506
3545
  "phf_generator",
3507
3546
  "phf_shared",
3508
3547
  "proc-macro-hack",
3509
- "proc-macro2 1.0.66",
3510
- "quote 1.0.28",
3548
+ "proc-macro2 1.0.67",
3549
+ "quote 1.0.33",
3511
3550
  "syn 1.0.109",
3512
3551
  ]
3513
3552
 
@@ -3517,7 +3556,7 @@ version = "0.10.0"
3517
3556
  source = "registry+https://github.com/rust-lang/crates.io-index"
3518
3557
  checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
3519
3558
  dependencies = [
3520
- "siphasher",
3559
+ "siphasher 0.3.11",
3521
3560
  ]
3522
3561
 
3523
3562
  [[package]]
@@ -3528,29 +3567,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
3528
3567
 
3529
3568
  [[package]]
3530
3569
  name = "pin-project"
3531
- version = "1.1.0"
3570
+ version = "1.1.3"
3532
3571
  source = "registry+https://github.com/rust-lang/crates.io-index"
3533
- checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead"
3572
+ checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
3534
3573
  dependencies = [
3535
3574
  "pin-project-internal",
3536
3575
  ]
3537
3576
 
3538
3577
  [[package]]
3539
3578
  name = "pin-project-internal"
3540
- version = "1.1.0"
3579
+ version = "1.1.3"
3541
3580
  source = "registry+https://github.com/rust-lang/crates.io-index"
3542
- checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07"
3581
+ checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
3543
3582
  dependencies = [
3544
- "proc-macro2 1.0.66",
3545
- "quote 1.0.28",
3546
- "syn 2.0.29",
3583
+ "proc-macro2 1.0.67",
3584
+ "quote 1.0.33",
3585
+ "syn 2.0.37",
3547
3586
  ]
3548
3587
 
3549
3588
  [[package]]
3550
3589
  name = "pin-project-lite"
3551
- version = "0.2.12"
3590
+ version = "0.2.13"
3552
3591
  source = "registry+https://github.com/rust-lang/crates.io-index"
3553
- checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05"
3592
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
3554
3593
 
3555
3594
  [[package]]
3556
3595
  name = "pin-utils"
@@ -3586,7 +3625,7 @@ version = "0.10.2"
3586
3625
  source = "registry+https://github.com/rust-lang/crates.io-index"
3587
3626
  checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
3588
3627
  dependencies = [
3589
- "der 0.7.6",
3628
+ "der 0.7.8",
3590
3629
  "spki 0.7.2",
3591
3630
  ]
3592
3631
 
@@ -3598,20 +3637,9 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
3598
3637
 
3599
3638
  [[package]]
3600
3639
  name = "platforms"
3601
- version = "3.0.2"
3602
- source = "registry+https://github.com/rust-lang/crates.io-index"
3603
- checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630"
3604
-
3605
- [[package]]
3606
- name = "pmutil"
3607
- version = "0.5.3"
3640
+ version = "3.1.2"
3608
3641
  source = "registry+https://github.com/rust-lang/crates.io-index"
3609
- checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004"
3610
- dependencies = [
3611
- "proc-macro2 1.0.66",
3612
- "quote 1.0.28",
3613
- "syn 1.0.109",
3614
- ]
3642
+ checksum = "4503fa043bf02cee09a9582e9554b4c6403b2ef55e4612e96561d294419429f8"
3615
3643
 
3616
3644
  [[package]]
3617
3645
  name = "pmutil"
@@ -3619,9 +3647,9 @@ version = "0.6.1"
3619
3647
  source = "registry+https://github.com/rust-lang/crates.io-index"
3620
3648
  checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6"
3621
3649
  dependencies = [
3622
- "proc-macro2 1.0.66",
3623
- "quote 1.0.28",
3624
- "syn 2.0.29",
3650
+ "proc-macro2 1.0.67",
3651
+ "quote 1.0.33",
3652
+ "syn 2.0.37",
3625
3653
  ]
3626
3654
 
3627
3655
  [[package]]
@@ -3663,14 +3691,14 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
3663
3691
 
3664
3692
  [[package]]
3665
3693
  name = "predicates"
3666
- version = "3.0.3"
3694
+ version = "3.0.4"
3667
3695
  source = "registry+https://github.com/rust-lang/crates.io-index"
3668
- checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9"
3696
+ checksum = "6dfc28575c2e3f19cb3c73b93af36460ae898d426eba6fc15b9bd2a5220758a0"
3669
3697
  dependencies = [
3670
3698
  "anstyle",
3671
3699
  "difflib",
3672
3700
  "float-cmp",
3673
- "itertools",
3701
+ "itertools 0.11.0",
3674
3702
  "normalize-line-endings",
3675
3703
  "predicates-core",
3676
3704
  "regex",
@@ -3692,6 +3720,16 @@ dependencies = [
3692
3720
  "termtree",
3693
3721
  ]
3694
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
+
3695
3733
  [[package]]
3696
3734
  name = "primeorder"
3697
3735
  version = "0.13.2"
@@ -3718,8 +3756,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3718
3756
  checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
3719
3757
  dependencies = [
3720
3758
  "proc-macro-error-attr",
3721
- "proc-macro2 1.0.66",
3722
- "quote 1.0.28",
3759
+ "proc-macro2 1.0.67",
3760
+ "quote 1.0.33",
3723
3761
  "syn 1.0.109",
3724
3762
  "version_check",
3725
3763
  ]
@@ -3730,8 +3768,8 @@ version = "1.0.4"
3730
3768
  source = "registry+https://github.com/rust-lang/crates.io-index"
3731
3769
  checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
3732
3770
  dependencies = [
3733
- "proc-macro2 1.0.66",
3734
- "quote 1.0.28",
3771
+ "proc-macro2 1.0.67",
3772
+ "quote 1.0.33",
3735
3773
  "version_check",
3736
3774
  ]
3737
3775
 
@@ -3752,13 +3790,67 @@ dependencies = [
3752
3790
 
3753
3791
  [[package]]
3754
3792
  name = "proc-macro2"
3755
- version = "1.0.66"
3793
+ version = "1.0.67"
3756
3794
  source = "registry+https://github.com/rust-lang/crates.io-index"
3757
- checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
3795
+ checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
3758
3796
  dependencies = [
3759
3797
  "unicode-ident",
3760
3798
  ]
3761
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"
3805
+ dependencies = [
3806
+ "bytes",
3807
+ "prost-derive",
3808
+ ]
3809
+
3810
+ [[package]]
3811
+ name = "prost-build"
3812
+ version = "0.11.9"
3813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
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
+ ]
3831
+
3832
+ [[package]]
3833
+ name = "prost-derive"
3834
+ version = "0.11.9"
3835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3836
+ checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
3837
+ dependencies = [
3838
+ "anyhow",
3839
+ "itertools 0.10.5",
3840
+ "proc-macro2 1.0.67",
3841
+ "quote 1.0.33",
3842
+ "syn 1.0.109",
3843
+ ]
3844
+
3845
+ [[package]]
3846
+ name = "prost-types"
3847
+ version = "0.11.9"
3848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3849
+ checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
3850
+ dependencies = [
3851
+ "prost",
3852
+ ]
3853
+
3762
3854
  [[package]]
3763
3855
  name = "psm"
3764
3856
  version = "0.1.21"
@@ -3770,9 +3862,9 @@ dependencies = [
3770
3862
 
3771
3863
  [[package]]
3772
3864
  name = "pyo3"
3773
- version = "0.19.0"
3865
+ version = "0.19.2"
3774
3866
  source = "registry+https://github.com/rust-lang/crates.io-index"
3775
- checksum = "cffef52f74ec3b1a1baf295d9b8fcc3070327aefc39a6d00656b13c1d0b8885c"
3867
+ checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38"
3776
3868
  dependencies = [
3777
3869
  "anyhow",
3778
3870
  "cfg-if",
@@ -3788,9 +3880,9 @@ dependencies = [
3788
3880
 
3789
3881
  [[package]]
3790
3882
  name = "pyo3-build-config"
3791
- version = "0.19.0"
3883
+ version = "0.19.2"
3792
3884
  source = "registry+https://github.com/rust-lang/crates.io-index"
3793
- checksum = "713eccf888fb05f1a96eb78c0dbc51907fee42b3377272dc902eb38985f418d5"
3885
+ checksum = "076c73d0bc438f7a4ef6fdd0c3bb4732149136abd952b110ac93e4edb13a6ba5"
3794
3886
  dependencies = [
3795
3887
  "once_cell",
3796
3888
  "target-lexicon",
@@ -3798,9 +3890,9 @@ dependencies = [
3798
3890
 
3799
3891
  [[package]]
3800
3892
  name = "pyo3-ffi"
3801
- version = "0.19.0"
3893
+ version = "0.19.2"
3802
3894
  source = "registry+https://github.com/rust-lang/crates.io-index"
3803
- checksum = "5b2ecbdcfb01cbbf56e179ce969a048fd7305a66d4cdf3303e0da09d69afe4c3"
3895
+ checksum = "e53cee42e77ebe256066ba8aa77eff722b3bb91f3419177cf4cd0f304d3284d9"
3804
3896
  dependencies = [
3805
3897
  "libc",
3806
3898
  "pyo3-build-config",
@@ -3808,24 +3900,24 @@ dependencies = [
3808
3900
 
3809
3901
  [[package]]
3810
3902
  name = "pyo3-macros"
3811
- version = "0.19.0"
3903
+ version = "0.19.2"
3812
3904
  source = "registry+https://github.com/rust-lang/crates.io-index"
3813
- checksum = "b78fdc0899f2ea781c463679b20cb08af9247febc8d052de941951024cd8aea0"
3905
+ checksum = "dfeb4c99597e136528c6dd7d5e3de5434d1ceaf487436a3f03b2d56b6fc9efd1"
3814
3906
  dependencies = [
3815
- "proc-macro2 1.0.66",
3907
+ "proc-macro2 1.0.67",
3816
3908
  "pyo3-macros-backend",
3817
- "quote 1.0.28",
3909
+ "quote 1.0.33",
3818
3910
  "syn 1.0.109",
3819
3911
  ]
3820
3912
 
3821
3913
  [[package]]
3822
3914
  name = "pyo3-macros-backend"
3823
- version = "0.19.0"
3915
+ version = "0.19.2"
3824
3916
  source = "registry+https://github.com/rust-lang/crates.io-index"
3825
- checksum = "60da7b84f1227c3e2fe7593505de274dcf4c8928b4e0a1c23d551a14e4e80a0f"
3917
+ checksum = "947dc12175c254889edc0c02e399476c2f652b4b9ebd123aa655c224de259536"
3826
3918
  dependencies = [
3827
- "proc-macro2 1.0.66",
3828
- "quote 1.0.28",
3919
+ "proc-macro2 1.0.67",
3920
+ "quote 1.0.33",
3829
3921
  "syn 1.0.109",
3830
3922
  ]
3831
3923
 
@@ -3871,11 +3963,11 @@ dependencies = [
3871
3963
 
3872
3964
  [[package]]
3873
3965
  name = "quote"
3874
- version = "1.0.28"
3966
+ version = "1.0.33"
3875
3967
  source = "registry+https://github.com/rust-lang/crates.io-index"
3876
- checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
3968
+ checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
3877
3969
  dependencies = [
3878
- "proc-macro2 1.0.66",
3970
+ "proc-macro2 1.0.67",
3879
3971
  ]
3880
3972
 
3881
3973
  [[package]]
@@ -3919,9 +4011,9 @@ dependencies = [
3919
4011
 
3920
4012
  [[package]]
3921
4013
  name = "rayon"
3922
- version = "1.7.0"
4014
+ version = "1.8.0"
3923
4015
  source = "registry+https://github.com/rust-lang/crates.io-index"
3924
- checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
4016
+ checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
3925
4017
  dependencies = [
3926
4018
  "either",
3927
4019
  "rayon-core",
@@ -3929,14 +4021,12 @@ dependencies = [
3929
4021
 
3930
4022
  [[package]]
3931
4023
  name = "rayon-core"
3932
- version = "1.11.0"
4024
+ version = "1.12.0"
3933
4025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3934
- checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
4026
+ checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
3935
4027
  dependencies = [
3936
- "crossbeam-channel",
3937
4028
  "crossbeam-deque",
3938
4029
  "crossbeam-utils",
3939
- "num_cpus",
3940
4030
  ]
3941
4031
 
3942
4032
  [[package]]
@@ -3976,26 +4066,38 @@ dependencies = [
3976
4066
 
3977
4067
  [[package]]
3978
4068
  name = "regex"
3979
- version = "1.8.4"
4069
+ version = "1.9.5"
3980
4070
  source = "registry+https://github.com/rust-lang/crates.io-index"
3981
- checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
4071
+ checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47"
3982
4072
  dependencies = [
3983
4073
  "aho-corasick",
3984
4074
  "memchr",
4075
+ "regex-automata",
3985
4076
  "regex-syntax",
3986
4077
  ]
3987
4078
 
3988
4079
  [[package]]
3989
4080
  name = "regex-automata"
3990
- version = "0.1.10"
4081
+ version = "0.3.8"
3991
4082
  source = "registry+https://github.com/rust-lang/crates.io-index"
3992
- checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
4083
+ checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795"
4084
+ dependencies = [
4085
+ "aho-corasick",
4086
+ "memchr",
4087
+ "regex-syntax",
4088
+ ]
3993
4089
 
3994
4090
  [[package]]
3995
4091
  name = "regex-syntax"
3996
- 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"
3997
4099
  source = "registry+https://github.com/rust-lang/crates.io-index"
3998
- checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
4100
+ checksum = "c707298afce11da2efef2f600116fa93ffa7a032b5d7b628aa17711ec81383ca"
3999
4101
 
4000
4102
  [[package]]
4001
4103
  name = "reqwest"
@@ -4004,7 +4106,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4004
4106
  checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1"
4005
4107
  dependencies = [
4006
4108
  "async-compression",
4007
- "base64 0.21.2",
4109
+ "base64 0.21.4",
4008
4110
  "bytes",
4009
4111
  "encoding_rs",
4010
4112
  "futures-core",
@@ -4012,7 +4114,7 @@ dependencies = [
4012
4114
  "h2",
4013
4115
  "http",
4014
4116
  "http-body 0.4.5",
4015
- "hyper 0.14.26",
4117
+ "hyper 0.14.27",
4016
4118
  "hyper-rustls",
4017
4119
  "ipnet",
4018
4120
  "js-sys",
@@ -4036,7 +4138,7 @@ dependencies = [
4036
4138
  "wasm-bindgen-futures",
4037
4139
  "wasm-streams",
4038
4140
  "web-sys",
4039
- "webpki-roots 0.25.2",
4141
+ "webpki-roots",
4040
4142
  "winreg",
4041
4143
  ]
4042
4144
 
@@ -4162,9 +4264,9 @@ dependencies = [
4162
4264
 
4163
4265
  [[package]]
4164
4266
  name = "rstest"
4165
- version = "0.17.0"
4267
+ version = "0.18.2"
4166
4268
  source = "registry+https://github.com/rust-lang/crates.io-index"
4167
- checksum = "de1bb486a691878cd320c2f0d319ba91eeaa2e894066d8b5f8f117c000e9d962"
4269
+ checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
4168
4270
  dependencies = [
4169
4271
  "futures",
4170
4272
  "futures-timer",
@@ -4174,15 +4276,18 @@ dependencies = [
4174
4276
 
4175
4277
  [[package]]
4176
4278
  name = "rstest_macros"
4177
- version = "0.17.0"
4279
+ version = "0.18.2"
4178
4280
  source = "registry+https://github.com/rust-lang/crates.io-index"
4179
- checksum = "290ca1a1c8ca7edb7c3283bd44dc35dd54fdec6253a3912e201ba1072018fca8"
4281
+ checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
4180
4282
  dependencies = [
4181
4283
  "cfg-if",
4182
- "proc-macro2 1.0.66",
4183
- "quote 1.0.28",
4284
+ "glob",
4285
+ "proc-macro2 1.0.67",
4286
+ "quote 1.0.33",
4287
+ "regex",
4288
+ "relative-path",
4184
4289
  "rustc_version 0.4.0",
4185
- "syn 1.0.109",
4290
+ "syn 2.0.37",
4186
4291
  "unicode-ident",
4187
4292
  ]
4188
4293
 
@@ -4227,7 +4332,7 @@ version = "0.4.0"
4227
4332
  source = "registry+https://github.com/rust-lang/crates.io-index"
4228
4333
  checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
4229
4334
  dependencies = [
4230
- "semver 1.0.17",
4335
+ "semver 1.0.18",
4231
4336
  ]
4232
4337
 
4233
4338
  [[package]]
@@ -4241,36 +4346,22 @@ dependencies = [
4241
4346
 
4242
4347
  [[package]]
4243
4348
  name = "rustix"
4244
- version = "0.37.20"
4245
- source = "registry+https://github.com/rust-lang/crates.io-index"
4246
- checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0"
4247
- dependencies = [
4248
- "bitflags 1.3.2",
4249
- "errno 0.3.1",
4250
- "io-lifetimes",
4251
- "libc",
4252
- "linux-raw-sys 0.3.8",
4253
- "windows-sys 0.48.0",
4254
- ]
4255
-
4256
- [[package]]
4257
- name = "rustix"
4258
- version = "0.38.3"
4349
+ version = "0.38.14"
4259
4350
  source = "registry+https://github.com/rust-lang/crates.io-index"
4260
- checksum = "ac5ffa1efe7548069688cd7028f32591853cd7b5b756d41bcffd2353e4fc75b4"
4351
+ checksum = "747c788e9ce8e92b12cd485c49ddf90723550b654b32508f979b71a7b1ecda4f"
4261
4352
  dependencies = [
4262
4353
  "bitflags 2.4.0",
4263
- "errno 0.3.1",
4354
+ "errno 0.3.3",
4264
4355
  "libc",
4265
- "linux-raw-sys 0.4.5",
4266
- "windows-sys 0.48.0",
4356
+ "linux-raw-sys",
4357
+ "windows-sys",
4267
4358
  ]
4268
4359
 
4269
4360
  [[package]]
4270
4361
  name = "rustls"
4271
- version = "0.21.6"
4362
+ version = "0.21.7"
4272
4363
  source = "registry+https://github.com/rust-lang/crates.io-index"
4273
- checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb"
4364
+ checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
4274
4365
  dependencies = [
4275
4366
  "log",
4276
4367
  "ring",
@@ -4292,18 +4383,18 @@ dependencies = [
4292
4383
 
4293
4384
  [[package]]
4294
4385
  name = "rustls-pemfile"
4295
- version = "1.0.2"
4386
+ version = "1.0.3"
4296
4387
  source = "registry+https://github.com/rust-lang/crates.io-index"
4297
- checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
4388
+ checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
4298
4389
  dependencies = [
4299
- "base64 0.21.2",
4390
+ "base64 0.21.4",
4300
4391
  ]
4301
4392
 
4302
4393
  [[package]]
4303
4394
  name = "rustls-webpki"
4304
- version = "0.101.4"
4395
+ version = "0.101.6"
4305
4396
  source = "registry+https://github.com/rust-lang/crates.io-index"
4306
- checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d"
4397
+ checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe"
4307
4398
  dependencies = [
4308
4399
  "ring",
4309
4400
  "untrusted",
@@ -4333,9 +4424,9 @@ dependencies = [
4333
4424
 
4334
4425
  [[package]]
4335
4426
  name = "ryu"
4336
- version = "1.0.13"
4427
+ version = "1.0.15"
4337
4428
  source = "registry+https://github.com/rust-lang/crates.io-index"
4338
- checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
4429
+ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
4339
4430
 
4340
4431
  [[package]]
4341
4432
  name = "salsa20"
@@ -4357,11 +4448,11 @@ dependencies = [
4357
4448
 
4358
4449
  [[package]]
4359
4450
  name = "schannel"
4360
- version = "0.1.21"
4451
+ version = "0.1.22"
4361
4452
  source = "registry+https://github.com/rust-lang/crates.io-index"
4362
- checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
4453
+ checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
4363
4454
  dependencies = [
4364
- "windows-sys 0.42.0",
4455
+ "windows-sys",
4365
4456
  ]
4366
4457
 
4367
4458
  [[package]]
@@ -4372,9 +4463,9 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
4372
4463
 
4373
4464
  [[package]]
4374
4465
  name = "scopeguard"
4375
- version = "1.1.0"
4466
+ version = "1.2.0"
4376
4467
  source = "registry+https://github.com/rust-lang/crates.io-index"
4377
- checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
4468
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
4378
4469
 
4379
4470
  [[package]]
4380
4471
  name = "scrypt"
@@ -4414,12 +4505,12 @@ dependencies = [
4414
4505
 
4415
4506
  [[package]]
4416
4507
  name = "sec1"
4417
- version = "0.7.2"
4508
+ version = "0.7.3"
4418
4509
  source = "registry+https://github.com/rust-lang/crates.io-index"
4419
- checksum = "f0aec48e813d6b90b15f0b8948af3c63483992dee44c03e9930b3eebdabe046e"
4510
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
4420
4511
  dependencies = [
4421
4512
  "base16ct 0.2.0",
4422
- "der 0.7.6",
4513
+ "der 0.7.8",
4423
4514
  "generic-array 0.14.7",
4424
4515
  "pkcs8 0.10.2",
4425
4516
  "subtle",
@@ -4447,9 +4538,9 @@ dependencies = [
4447
4538
 
4448
4539
  [[package]]
4449
4540
  name = "security-framework"
4450
- version = "2.9.1"
4541
+ version = "2.9.2"
4451
4542
  source = "registry+https://github.com/rust-lang/crates.io-index"
4452
- checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
4543
+ checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
4453
4544
  dependencies = [
4454
4545
  "bitflags 1.3.2",
4455
4546
  "core-foundation",
@@ -4460,9 +4551,9 @@ dependencies = [
4460
4551
 
4461
4552
  [[package]]
4462
4553
  name = "security-framework-sys"
4463
- version = "2.9.0"
4554
+ version = "2.9.1"
4464
4555
  source = "registry+https://github.com/rust-lang/crates.io-index"
4465
- checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
4556
+ checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
4466
4557
  dependencies = [
4467
4558
  "core-foundation-sys",
4468
4559
  "libc",
@@ -4479,9 +4570,9 @@ dependencies = [
4479
4570
 
4480
4571
  [[package]]
4481
4572
  name = "semver"
4482
- version = "1.0.17"
4573
+ version = "1.0.18"
4483
4574
  source = "registry+https://github.com/rust-lang/crates.io-index"
4484
- checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
4575
+ checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
4485
4576
 
4486
4577
  [[package]]
4487
4578
  name = "semver-parser"
@@ -4491,9 +4582,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
4491
4582
 
4492
4583
  [[package]]
4493
4584
  name = "serde"
4494
- version = "1.0.186"
4585
+ version = "1.0.188"
4495
4586
  source = "registry+https://github.com/rust-lang/crates.io-index"
4496
- checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1"
4587
+ checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
4497
4588
  dependencies = [
4498
4589
  "serde_derive",
4499
4590
  ]
@@ -4510,29 +4601,29 @@ dependencies = [
4510
4601
 
4511
4602
  [[package]]
4512
4603
  name = "serde_bytes"
4513
- version = "0.11.9"
4604
+ version = "0.11.12"
4514
4605
  source = "registry+https://github.com/rust-lang/crates.io-index"
4515
- checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294"
4606
+ checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff"
4516
4607
  dependencies = [
4517
4608
  "serde",
4518
4609
  ]
4519
4610
 
4520
4611
  [[package]]
4521
4612
  name = "serde_derive"
4522
- version = "1.0.186"
4613
+ version = "1.0.188"
4523
4614
  source = "registry+https://github.com/rust-lang/crates.io-index"
4524
- checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670"
4615
+ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
4525
4616
  dependencies = [
4526
- "proc-macro2 1.0.66",
4527
- "quote 1.0.28",
4528
- "syn 2.0.29",
4617
+ "proc-macro2 1.0.67",
4618
+ "quote 1.0.33",
4619
+ "syn 2.0.37",
4529
4620
  ]
4530
4621
 
4531
4622
  [[package]]
4532
4623
  name = "serde_json"
4533
- version = "1.0.105"
4624
+ version = "1.0.107"
4534
4625
  source = "registry+https://github.com/rust-lang/crates.io-index"
4535
- checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360"
4626
+ checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
4536
4627
  dependencies = [
4537
4628
  "indexmap 2.0.0",
4538
4629
  "itoa",
@@ -4554,9 +4645,9 @@ dependencies = [
4554
4645
 
4555
4646
  [[package]]
4556
4647
  name = "serde_v8"
4557
- version = "0.111.0"
4648
+ version = "0.123.0"
4558
4649
  source = "registry+https://github.com/rust-lang/crates.io-index"
4559
- checksum = "309b3060a9627882514f3a3ce3cc08ceb347a76aeeadc58f138c3f189cf88b71"
4650
+ checksum = "cc3e1c4d2b20f6983e86077c66b25b8d768f2e102e09659af2af034ac47ae709"
4560
4651
  dependencies = [
4561
4652
  "bytes",
4562
4653
  "derive_more",
@@ -4581,9 +4672,9 @@ dependencies = [
4581
4672
 
4582
4673
  [[package]]
4583
4674
  name = "sha1"
4584
- version = "0.10.5"
4675
+ version = "0.10.6"
4585
4676
  source = "registry+https://github.com/rust-lang/crates.io-index"
4586
- checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
4677
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
4587
4678
  dependencies = [
4588
4679
  "cfg-if",
4589
4680
  "cpufeatures",
@@ -4662,15 +4753,21 @@ dependencies = [
4662
4753
 
4663
4754
  [[package]]
4664
4755
  name = "siphasher"
4665
- 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"
4666
4763
  source = "registry+https://github.com/rust-lang/crates.io-index"
4667
- checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
4764
+ checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe"
4668
4765
 
4669
4766
  [[package]]
4670
4767
  name = "slab"
4671
- version = "0.4.8"
4768
+ version = "0.4.9"
4672
4769
  source = "registry+https://github.com/rust-lang/crates.io-index"
4673
- checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
4770
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
4674
4771
  dependencies = [
4675
4772
  "autocfg",
4676
4773
  ]
@@ -4686,9 +4783,9 @@ dependencies = [
4686
4783
 
4687
4784
  [[package]]
4688
4785
  name = "smallvec"
4689
- version = "1.10.0"
4786
+ version = "1.11.1"
4690
4787
  source = "registry+https://github.com/rust-lang/crates.io-index"
4691
- checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
4788
+ checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
4692
4789
 
4693
4790
  [[package]]
4694
4791
  name = "smartstring"
@@ -4713,21 +4810,38 @@ dependencies = [
4713
4810
 
4714
4811
  [[package]]
4715
4812
  name = "socket2"
4716
- version = "0.5.3"
4813
+ version = "0.5.4"
4717
4814
  source = "registry+https://github.com/rust-lang/crates.io-index"
4718
- checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
4815
+ checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e"
4719
4816
  dependencies = [
4720
4817
  "libc",
4721
- "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",
4722
4835
  ]
4723
4836
 
4724
4837
  [[package]]
4725
4838
  name = "sourcemap"
4726
- version = "6.2.3"
4839
+ version = "7.0.0"
4727
4840
  source = "registry+https://github.com/rust-lang/crates.io-index"
4728
- checksum = "eed16231c92d0a6f0388f56e0ab2be24ecff1173f8e22f0ea5e074d0525631cb"
4841
+ checksum = "dbecc42a2b6131acc3bf9a25c9fe4161dba438eb52131bba83c5d781b5b70be3"
4729
4842
  dependencies = [
4730
4843
  "data-encoding",
4844
+ "debugid",
4731
4845
  "if_chain",
4732
4846
  "rustc_version 0.2.3",
4733
4847
  "serde",
@@ -4768,7 +4882,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4768
4882
  checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
4769
4883
  dependencies = [
4770
4884
  "base64ct",
4771
- "der 0.7.6",
4885
+ "der 0.7.8",
4772
4886
  ]
4773
4887
 
4774
4888
  [[package]]
@@ -4827,21 +4941,21 @@ checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
4827
4941
  dependencies = [
4828
4942
  "phf_generator",
4829
4943
  "phf_shared",
4830
- "proc-macro2 1.0.66",
4831
- "quote 1.0.28",
4944
+ "proc-macro2 1.0.67",
4945
+ "quote 1.0.33",
4832
4946
  ]
4833
4947
 
4834
4948
  [[package]]
4835
4949
  name = "string_enum"
4836
- version = "0.4.0"
4950
+ version = "0.4.1"
4837
4951
  source = "registry+https://github.com/rust-lang/crates.io-index"
4838
- checksum = "0090512bdfee4b56d82480d66c0fd8a6f53f0fe0f97e075e949b252acdd482e0"
4952
+ checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252"
4839
4953
  dependencies = [
4840
- "pmutil 0.5.3",
4841
- "proc-macro2 1.0.66",
4842
- "quote 1.0.28",
4954
+ "pmutil",
4955
+ "proc-macro2 1.0.67",
4956
+ "quote 1.0.33",
4843
4957
  "swc_macros_common",
4844
- "syn 1.0.109",
4958
+ "syn 2.0.37",
4845
4959
  ]
4846
4960
 
4847
4961
  [[package]]
@@ -4866,18 +4980,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4866
4980
  checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059"
4867
4981
  dependencies = [
4868
4982
  "heck",
4869
- "proc-macro2 1.0.66",
4870
- "quote 1.0.28",
4983
+ "proc-macro2 1.0.67",
4984
+ "quote 1.0.33",
4871
4985
  "rustversion",
4872
- "syn 2.0.29",
4986
+ "syn 2.0.37",
4873
4987
  ]
4874
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
+
4875
4995
  [[package]]
4876
4996
  name = "subtle"
4877
4997
  version = "2.5.0"
4878
4998
  source = "registry+https://github.com/rust-lang/crates.io-index"
4879
4999
  checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
4880
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
+
4881
5013
  [[package]]
4882
5014
  name = "svgtypes"
4883
5015
  version = "0.11.0"
@@ -4885,14 +5017,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4885
5017
  checksum = "ed4b0611e7f3277f68c0fa18e385d9e2d26923691379690039548f867cef02a7"
4886
5018
  dependencies = [
4887
5019
  "kurbo",
4888
- "siphasher",
5020
+ "siphasher 0.3.11",
4889
5021
  ]
4890
5022
 
4891
5023
  [[package]]
4892
5024
  name = "swc_atoms"
4893
- version = "0.5.6"
5025
+ version = "0.5.9"
4894
5026
  source = "registry+https://github.com/rust-lang/crates.io-index"
4895
- checksum = "93d0307dc4bfd107d49c7528350c372758cfca94fb503629b9a056e6a1572860"
5027
+ checksum = "9f54563d7dcba626d4acfe14ed12def7ecc28e004debe3ecd2c3ee07cc47e449"
4896
5028
  dependencies = [
4897
5029
  "once_cell",
4898
5030
  "rustc-hash",
@@ -4904,11 +5036,10 @@ dependencies = [
4904
5036
 
4905
5037
  [[package]]
4906
5038
  name = "swc_common"
4907
- version = "0.31.12"
5039
+ version = "0.32.0"
4908
5040
  source = "registry+https://github.com/rust-lang/crates.io-index"
4909
- checksum = "19c774005489d2907fb67909cf42af926e72edee1366512777c605ba2ef19c94"
5041
+ checksum = "39cb7fcd56655c8ae7dcf2344f0be6cbff4d9c7cb401fe3ec8e56e1de8dfe582"
4910
5042
  dependencies = [
4911
- "ahash 0.7.6",
4912
5043
  "ast_node",
4913
5044
  "better_scoped_tls",
4914
5045
  "cfg-if",
@@ -4919,8 +5050,8 @@ dependencies = [
4919
5050
  "once_cell",
4920
5051
  "rustc-hash",
4921
5052
  "serde",
4922
- "siphasher",
4923
- "sourcemap",
5053
+ "siphasher 0.3.11",
5054
+ "sourcemap 6.4.1",
4924
5055
  "string_cache",
4925
5056
  "swc_atoms",
4926
5057
  "swc_eq_ignore_macros",
@@ -4932,9 +5063,9 @@ dependencies = [
4932
5063
 
4933
5064
  [[package]]
4934
5065
  name = "swc_config"
4935
- version = "0.1.5"
5066
+ version = "0.1.7"
4936
5067
  source = "registry+https://github.com/rust-lang/crates.io-index"
4937
- checksum = "89c8fc2c12bb1634c7c32fc3c9b6b963ad8f034cc62c4ecddcf215dc4f6f959d"
5068
+ checksum = "9ba1c7a40d38f9dd4e9a046975d3faf95af42937b34b2b963be4d8f01239584b"
4938
5069
  dependencies = [
4939
5070
  "indexmap 1.9.3",
4940
5071
  "serde",
@@ -4944,22 +5075,22 @@ dependencies = [
4944
5075
 
4945
5076
  [[package]]
4946
5077
  name = "swc_config_macro"
4947
- version = "0.1.1"
5078
+ version = "0.1.2"
4948
5079
  source = "registry+https://github.com/rust-lang/crates.io-index"
4949
- checksum = "7dadb9998d4f5fc36ef558ed5a092579441579ee8c6fcce84a5228cca9df4004"
5080
+ checksum = "e5b5aaca9a0082be4515f0fbbecc191bf5829cd25b5b9c0a2810f6a2bb0d6829"
4950
5081
  dependencies = [
4951
- "pmutil 0.5.3",
4952
- "proc-macro2 1.0.66",
4953
- "quote 1.0.28",
5082
+ "pmutil",
5083
+ "proc-macro2 1.0.67",
5084
+ "quote 1.0.33",
4954
5085
  "swc_macros_common",
4955
- "syn 1.0.109",
5086
+ "syn 2.0.37",
4956
5087
  ]
4957
5088
 
4958
5089
  [[package]]
4959
5090
  name = "swc_ecma_ast"
4960
- version = "0.104.5"
5091
+ version = "0.109.0"
4961
5092
  source = "registry+https://github.com/rust-lang/crates.io-index"
4962
- checksum = "b5cf9dd351d0c285dcd36535267953a18995d4dda0cbe34ac9d1df61aa415b26"
5093
+ checksum = "7bc2286cedd688a68f214faa1c19bb5cceab7c9c54d0cbe3273e4c1704e38f69"
4963
5094
  dependencies = [
4964
5095
  "bitflags 2.4.0",
4965
5096
  "is-macro",
@@ -4974,16 +5105,16 @@ dependencies = [
4974
5105
 
4975
5106
  [[package]]
4976
5107
  name = "swc_ecma_codegen"
4977
- version = "0.139.17"
5108
+ version = "0.144.1"
4978
5109
  source = "registry+https://github.com/rust-lang/crates.io-index"
4979
- checksum = "c66d1ea16bb9b7ea6f87f17325742ff256fcbd65b188af57c2bf415fe4afc945"
5110
+ checksum = "8e62ba2c0ed1f119fc1a76542d007f1b2c12854d54dea15f5491363227debe11"
4980
5111
  dependencies = [
4981
5112
  "memchr",
4982
5113
  "num-bigint",
4983
5114
  "once_cell",
4984
5115
  "rustc-hash",
4985
5116
  "serde",
4986
- "sourcemap",
5117
+ "sourcemap 6.4.1",
4987
5118
  "swc_atoms",
4988
5119
  "swc_common",
4989
5120
  "swc_ecma_ast",
@@ -4993,24 +5124,23 @@ dependencies = [
4993
5124
 
4994
5125
  [[package]]
4995
5126
  name = "swc_ecma_codegen_macros"
4996
- version = "0.7.2"
5127
+ version = "0.7.3"
4997
5128
  source = "registry+https://github.com/rust-lang/crates.io-index"
4998
- checksum = "bf4ee0caee1018808d94ecd09490cb7affd3d504b19aa11c49238f5fc4b54901"
5129
+ checksum = "dcdff076dccca6cc6a0e0b2a2c8acfb066014382bc6df98ec99e755484814384"
4999
5130
  dependencies = [
5000
- "pmutil 0.5.3",
5001
- "proc-macro2 1.0.66",
5002
- "quote 1.0.28",
5131
+ "pmutil",
5132
+ "proc-macro2 1.0.67",
5133
+ "quote 1.0.33",
5003
5134
  "swc_macros_common",
5004
- "syn 1.0.109",
5135
+ "syn 2.0.37",
5005
5136
  ]
5006
5137
 
5007
5138
  [[package]]
5008
5139
  name = "swc_ecma_loader"
5009
- version = "0.43.14"
5140
+ version = "0.44.2"
5010
5141
  source = "registry+https://github.com/rust-lang/crates.io-index"
5011
- checksum = "fe45f1e5dcc1b005544ff78253b787dea5dfd5e2f712b133964cdc3545c954a4"
5142
+ checksum = "e7d7c322462657ae27ac090a2c89f7e456c94416284a2f5ecf66c43a6a3c19d1"
5012
5143
  dependencies = [
5013
- "ahash 0.7.6",
5014
5144
  "anyhow",
5015
5145
  "pathdiff",
5016
5146
  "serde",
@@ -5020,13 +5150,13 @@ dependencies = [
5020
5150
 
5021
5151
  [[package]]
5022
5152
  name = "swc_ecma_parser"
5023
- version = "0.134.12"
5153
+ version = "0.139.0"
5024
5154
  source = "registry+https://github.com/rust-lang/crates.io-index"
5025
- checksum = "f0a3fcfe3d83dd445cbd9321882e47b467594433d9a21c4d6c37a27f534bb89e"
5155
+ checksum = "3eab46cb863bc5cd61535464e07e5b74d5f792fa26a27b9f6fd4c8daca9903b7"
5026
5156
  dependencies = [
5027
5157
  "either",
5028
- "lexical",
5029
5158
  "num-bigint",
5159
+ "num-traits",
5030
5160
  "serde",
5031
5161
  "smallvec",
5032
5162
  "smartstring",
@@ -5040,9 +5170,9 @@ dependencies = [
5040
5170
 
5041
5171
  [[package]]
5042
5172
  name = "swc_ecma_transforms_base"
5043
- version = "0.127.18"
5173
+ version = "0.132.2"
5044
5174
  source = "registry+https://github.com/rust-lang/crates.io-index"
5045
- checksum = "f9c33ec5369178f3a0580ab86cfe89ffb9c3fbd122aed379cfb71d469d9d61c1"
5175
+ checksum = "01ffd4a8149052bfc1ec1832fcbe04f317846ce635a49ec438df33b06db27d26"
5046
5176
  dependencies = [
5047
5177
  "better_scoped_tls",
5048
5178
  "bitflags 2.4.0",
@@ -5063,9 +5193,9 @@ dependencies = [
5063
5193
 
5064
5194
  [[package]]
5065
5195
  name = "swc_ecma_transforms_classes"
5066
- version = "0.116.18"
5196
+ version = "0.121.2"
5067
5197
  source = "registry+https://github.com/rust-lang/crates.io-index"
5068
- checksum = "6e3b0d5f362f0da97be1f1b06d7b0d8667ea70b4adeabff0dcaecb6259c09525"
5198
+ checksum = "f4b7fee0e2c6f12456d2aefb2418f2f26529b995945d493e1dce35a5a22584fc"
5069
5199
  dependencies = [
5070
5200
  "swc_atoms",
5071
5201
  "swc_common",
@@ -5077,22 +5207,22 @@ dependencies = [
5077
5207
 
5078
5208
  [[package]]
5079
5209
  name = "swc_ecma_transforms_macros"
5080
- version = "0.5.1"
5210
+ version = "0.5.3"
5081
5211
  source = "registry+https://github.com/rust-lang/crates.io-index"
5082
- checksum = "984d5ac69b681fc5438f9abf82b0fda34fe04e119bc75f8213b7e01128c7c9a2"
5212
+ checksum = "8188eab297da773836ef5cf2af03ee5cca7a563e1be4b146f8141452c28cc690"
5083
5213
  dependencies = [
5084
- "pmutil 0.5.3",
5085
- "proc-macro2 1.0.66",
5086
- "quote 1.0.28",
5214
+ "pmutil",
5215
+ "proc-macro2 1.0.67",
5216
+ "quote 1.0.33",
5087
5217
  "swc_macros_common",
5088
- "syn 1.0.109",
5218
+ "syn 2.0.37",
5089
5219
  ]
5090
5220
 
5091
5221
  [[package]]
5092
5222
  name = "swc_ecma_transforms_proposal"
5093
- version = "0.161.22"
5223
+ version = "0.166.3"
5094
5224
  source = "registry+https://github.com/rust-lang/crates.io-index"
5095
- checksum = "0cdce42d44ef775bc29f5ada3678a80ff72fa17a0ef705e14f63cfd0e0155e0e"
5225
+ checksum = "122fd9a69f464694edefbf9c59106b3c15e5cc8cb8575a97836e4fb79018e98f"
5096
5226
  dependencies = [
5097
5227
  "either",
5098
5228
  "rustc-hash",
@@ -5110,11 +5240,10 @@ dependencies = [
5110
5240
 
5111
5241
  [[package]]
5112
5242
  name = "swc_ecma_transforms_react"
5113
- version = "0.173.20"
5243
+ version = "0.178.3"
5114
5244
  source = "registry+https://github.com/rust-lang/crates.io-index"
5115
- checksum = "5fb9481ad4e2acba34c6fbb6d4ccc64efe9f1821675e883dcfa732d7220f4b1e"
5245
+ checksum = "675b5c755b0448268830e85e59429095d3423c0ce4a850b209c6f0eeab069f63"
5116
5246
  dependencies = [
5117
- "ahash 0.7.6",
5118
5247
  "base64 0.13.1",
5119
5248
  "dashmap",
5120
5249
  "indexmap 1.9.3",
@@ -5135,9 +5264,9 @@ dependencies = [
5135
5264
 
5136
5265
  [[package]]
5137
5266
  name = "swc_ecma_transforms_typescript"
5138
- version = "0.177.23"
5267
+ version = "0.182.3"
5139
5268
  source = "registry+https://github.com/rust-lang/crates.io-index"
5140
- checksum = "1fe2eea4f5b8a25c93cdaa29fb1ce4108893da88a11e61e04b7f5295b5468829"
5269
+ checksum = "4eba97b1ea71739fcf278aedad4677a3cacb52288a3f3566191b70d16a889de6"
5141
5270
  dependencies = [
5142
5271
  "serde",
5143
5272
  "swc_atoms",
@@ -5151,9 +5280,9 @@ dependencies = [
5151
5280
 
5152
5281
  [[package]]
5153
5282
  name = "swc_ecma_utils"
5154
- version = "0.117.13"
5283
+ version = "0.122.0"
5155
5284
  source = "registry+https://github.com/rust-lang/crates.io-index"
5156
- checksum = "ad791bbfdafcebd878584021e050964c8ab68aba7eeac9d0ee4afba4c284a629"
5285
+ checksum = "11006a3398ffd4693c4d3b0a1b1a5030edbdc04228159f5301120a6178144708"
5157
5286
  dependencies = [
5158
5287
  "indexmap 1.9.3",
5159
5288
  "num_cpus",
@@ -5169,9 +5298,9 @@ dependencies = [
5169
5298
 
5170
5299
  [[package]]
5171
5300
  name = "swc_ecma_visit"
5172
- version = "0.90.5"
5301
+ version = "0.95.0"
5173
5302
  source = "registry+https://github.com/rust-lang/crates.io-index"
5174
- checksum = "6ce3ac941ae1d6c7e683aa375fc71fbf58df58b441f614d757fbb10554936ca2"
5303
+ checksum = "0f628ec196e76e67892441e14eef2e423a738543d32bffdabfeec20c29582117"
5175
5304
  dependencies = [
5176
5305
  "num-bigint",
5177
5306
  "swc_atoms",
@@ -5183,33 +5312,33 @@ dependencies = [
5183
5312
 
5184
5313
  [[package]]
5185
5314
  name = "swc_eq_ignore_macros"
5186
- version = "0.1.1"
5315
+ version = "0.1.2"
5187
5316
  source = "registry+https://github.com/rust-lang/crates.io-index"
5188
- checksum = "0c20468634668c2bbab581947bb8c75c97158d5a6959f4ba33df20983b20b4f6"
5317
+ checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8"
5189
5318
  dependencies = [
5190
- "pmutil 0.5.3",
5191
- "proc-macro2 1.0.66",
5192
- "quote 1.0.28",
5193
- "syn 1.0.109",
5319
+ "pmutil",
5320
+ "proc-macro2 1.0.67",
5321
+ "quote 1.0.33",
5322
+ "syn 2.0.37",
5194
5323
  ]
5195
5324
 
5196
5325
  [[package]]
5197
5326
  name = "swc_macros_common"
5198
- version = "0.3.7"
5327
+ version = "0.3.8"
5199
5328
  source = "registry+https://github.com/rust-lang/crates.io-index"
5200
- checksum = "3e582c3e3c2269238524923781df5be49e011dbe29cf7683a2215d600a562ea6"
5329
+ checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832"
5201
5330
  dependencies = [
5202
- "pmutil 0.5.3",
5203
- "proc-macro2 1.0.66",
5204
- "quote 1.0.28",
5205
- "syn 1.0.109",
5331
+ "pmutil",
5332
+ "proc-macro2 1.0.67",
5333
+ "quote 1.0.33",
5334
+ "syn 2.0.37",
5206
5335
  ]
5207
5336
 
5208
5337
  [[package]]
5209
5338
  name = "swc_visit"
5210
- version = "0.5.6"
5339
+ version = "0.5.7"
5211
5340
  source = "registry+https://github.com/rust-lang/crates.io-index"
5212
- checksum = "5f412dd4fbc58f509a04e64f5c8038333142fc139e8232f01b883db0094b3b51"
5341
+ checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3"
5213
5342
  dependencies = [
5214
5343
  "either",
5215
5344
  "swc_visit_macros",
@@ -5217,16 +5346,16 @@ dependencies = [
5217
5346
 
5218
5347
  [[package]]
5219
5348
  name = "swc_visit_macros"
5220
- version = "0.5.7"
5349
+ version = "0.5.8"
5221
5350
  source = "registry+https://github.com/rust-lang/crates.io-index"
5222
- checksum = "4cfc226380ba54a5feed2c12f3ccd33f1ae8e959160290e5d2d9b4e918b6472a"
5351
+ checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99"
5223
5352
  dependencies = [
5224
5353
  "Inflector",
5225
- "pmutil 0.5.3",
5226
- "proc-macro2 1.0.66",
5227
- "quote 1.0.28",
5354
+ "pmutil",
5355
+ "proc-macro2 1.0.67",
5356
+ "quote 1.0.33",
5228
5357
  "swc_macros_common",
5229
- "syn 1.0.109",
5358
+ "syn 2.0.37",
5230
5359
  ]
5231
5360
 
5232
5361
  [[package]]
@@ -5246,19 +5375,19 @@ version = "1.0.109"
5246
5375
  source = "registry+https://github.com/rust-lang/crates.io-index"
5247
5376
  checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
5248
5377
  dependencies = [
5249
- "proc-macro2 1.0.66",
5250
- "quote 1.0.28",
5378
+ "proc-macro2 1.0.67",
5379
+ "quote 1.0.33",
5251
5380
  "unicode-ident",
5252
5381
  ]
5253
5382
 
5254
5383
  [[package]]
5255
5384
  name = "syn"
5256
- version = "2.0.29"
5385
+ version = "2.0.37"
5257
5386
  source = "registry+https://github.com/rust-lang/crates.io-index"
5258
- checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
5387
+ checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
5259
5388
  dependencies = [
5260
- "proc-macro2 1.0.66",
5261
- "quote 1.0.28",
5389
+ "proc-macro2 1.0.67",
5390
+ "quote 1.0.33",
5262
5391
  "unicode-ident",
5263
5392
  ]
5264
5393
 
@@ -5268,17 +5397,17 @@ version = "0.12.6"
5268
5397
  source = "registry+https://github.com/rust-lang/crates.io-index"
5269
5398
  checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
5270
5399
  dependencies = [
5271
- "proc-macro2 1.0.66",
5272
- "quote 1.0.28",
5400
+ "proc-macro2 1.0.67",
5401
+ "quote 1.0.33",
5273
5402
  "syn 1.0.109",
5274
5403
  "unicode-xid 0.2.4",
5275
5404
  ]
5276
5405
 
5277
5406
  [[package]]
5278
5407
  name = "target-lexicon"
5279
- version = "0.12.8"
5408
+ version = "0.12.11"
5280
5409
  source = "registry+https://github.com/rust-lang/crates.io-index"
5281
- checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac"
5410
+ checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
5282
5411
 
5283
5412
  [[package]]
5284
5413
  name = "tempfile"
@@ -5289,15 +5418,15 @@ dependencies = [
5289
5418
  "cfg-if",
5290
5419
  "fastrand",
5291
5420
  "redox_syscall 0.3.5",
5292
- "rustix 0.38.3",
5293
- "windows-sys 0.48.0",
5421
+ "rustix",
5422
+ "windows-sys",
5294
5423
  ]
5295
5424
 
5296
5425
  [[package]]
5297
5426
  name = "termcolor"
5298
- version = "1.2.0"
5427
+ version = "1.3.0"
5299
5428
  source = "registry+https://github.com/rust-lang/crates.io-index"
5300
- checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
5429
+ checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64"
5301
5430
  dependencies = [
5302
5431
  "winapi-util",
5303
5432
  ]
@@ -5319,22 +5448,22 @@ dependencies = [
5319
5448
 
5320
5449
  [[package]]
5321
5450
  name = "thiserror"
5322
- version = "1.0.40"
5451
+ version = "1.0.48"
5323
5452
  source = "registry+https://github.com/rust-lang/crates.io-index"
5324
- checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
5453
+ checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7"
5325
5454
  dependencies = [
5326
5455
  "thiserror-impl",
5327
5456
  ]
5328
5457
 
5329
5458
  [[package]]
5330
5459
  name = "thiserror-impl"
5331
- version = "1.0.40"
5460
+ version = "1.0.48"
5332
5461
  source = "registry+https://github.com/rust-lang/crates.io-index"
5333
- checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
5462
+ checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
5334
5463
  dependencies = [
5335
- "proc-macro2 1.0.66",
5336
- "quote 1.0.28",
5337
- "syn 2.0.29",
5464
+ "proc-macro2 1.0.67",
5465
+ "quote 1.0.33",
5466
+ "syn 2.0.37",
5338
5467
  ]
5339
5468
 
5340
5469
  [[package]]
@@ -5350,10 +5479,11 @@ dependencies = [
5350
5479
 
5351
5480
  [[package]]
5352
5481
  name = "time"
5353
- version = "0.3.22"
5482
+ version = "0.3.28"
5354
5483
  source = "registry+https://github.com/rust-lang/crates.io-index"
5355
- checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
5484
+ checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48"
5356
5485
  dependencies = [
5486
+ "deranged",
5357
5487
  "itoa",
5358
5488
  "serde",
5359
5489
  "time-core",
@@ -5368,9 +5498,9 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
5368
5498
 
5369
5499
  [[package]]
5370
5500
  name = "time-macros"
5371
- version = "0.2.9"
5501
+ version = "0.2.14"
5372
5502
  source = "registry+https://github.com/rust-lang/crates.io-index"
5373
- checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
5503
+ checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572"
5374
5504
  dependencies = [
5375
5505
  "time-core",
5376
5506
  ]
@@ -5430,9 +5560,9 @@ dependencies = [
5430
5560
  "parking_lot",
5431
5561
  "pin-project-lite",
5432
5562
  "signal-hook-registry",
5433
- "socket2 0.5.3",
5563
+ "socket2 0.5.4",
5434
5564
  "tokio-macros",
5435
- "windows-sys 0.48.0",
5565
+ "windows-sys",
5436
5566
  ]
5437
5567
 
5438
5568
  [[package]]
@@ -5441,16 +5571,16 @@ version = "2.1.0"
5441
5571
  source = "registry+https://github.com/rust-lang/crates.io-index"
5442
5572
  checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
5443
5573
  dependencies = [
5444
- "proc-macro2 1.0.66",
5445
- "quote 1.0.28",
5446
- "syn 2.0.29",
5574
+ "proc-macro2 1.0.67",
5575
+ "quote 1.0.33",
5576
+ "syn 2.0.37",
5447
5577
  ]
5448
5578
 
5449
5579
  [[package]]
5450
5580
  name = "tokio-metrics"
5451
- version = "0.2.2"
5581
+ version = "0.3.0"
5452
5582
  source = "registry+https://github.com/rust-lang/crates.io-index"
5453
- checksum = "b60ac6224d622f71d0b80546558eedf8ff6c2d3817517a9d3ed87ce24fccf6a6"
5583
+ checksum = "d4b2fc67d5dec41db679b9b052eb572269616926040b7831e32c8a152df77b84"
5454
5584
  dependencies = [
5455
5585
  "futures-util",
5456
5586
  "pin-project-lite",
@@ -5493,9 +5623,9 @@ dependencies = [
5493
5623
 
5494
5624
  [[package]]
5495
5625
  name = "tokio-util"
5496
- version = "0.7.8"
5626
+ version = "0.7.9"
5497
5627
  source = "registry+https://github.com/rust-lang/crates.io-index"
5498
- checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
5628
+ checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
5499
5629
  dependencies = [
5500
5630
  "bytes",
5501
5631
  "futures-core",
@@ -5522,9 +5652,9 @@ checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
5522
5652
 
5523
5653
  [[package]]
5524
5654
  name = "toml_edit"
5525
- version = "0.19.11"
5655
+ version = "0.19.15"
5526
5656
  source = "registry+https://github.com/rust-lang/crates.io-index"
5527
- checksum = "266f016b7f039eec8a1a80dfe6156b633d208b9fccca5e4db1d6775b0c4e34a7"
5657
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
5528
5658
  dependencies = [
5529
5659
  "indexmap 2.0.0",
5530
5660
  "toml_datetime",
@@ -5555,9 +5685,9 @@ version = "0.1.26"
5555
5685
  source = "registry+https://github.com/rust-lang/crates.io-index"
5556
5686
  checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
5557
5687
  dependencies = [
5558
- "proc-macro2 1.0.66",
5559
- "quote 1.0.28",
5560
- "syn 2.0.29",
5688
+ "proc-macro2 1.0.67",
5689
+ "quote 1.0.33",
5690
+ "syn 2.0.37",
5561
5691
  ]
5562
5692
 
5563
5693
  [[package]]
@@ -5571,9 +5701,9 @@ dependencies = [
5571
5701
 
5572
5702
  [[package]]
5573
5703
  name = "triomphe"
5574
- version = "0.1.8"
5704
+ version = "0.1.9"
5575
5705
  source = "registry+https://github.com/rust-lang/crates.io-index"
5576
- checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
5706
+ checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f"
5577
5707
  dependencies = [
5578
5708
  "serde",
5579
5709
  "stable_deref_trait",
@@ -5640,9 +5770,9 @@ checksum = "0609f771ad9c6155384897e1df4d948e692667cc0588548b68eb44d052b27633"
5640
5770
 
5641
5771
  [[package]]
5642
5772
  name = "ttf-parser"
5643
- version = "0.19.1"
5773
+ version = "0.19.2"
5644
5774
  source = "registry+https://github.com/rust-lang/crates.io-index"
5645
- checksum = "a464a4b34948a5f67fddd2b823c62d9d92e44be75058b99939eae6c5b6960b33"
5775
+ checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1"
5646
5776
 
5647
5777
  [[package]]
5648
5778
  name = "typed-arena"
@@ -5652,9 +5782,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
5652
5782
 
5653
5783
  [[package]]
5654
5784
  name = "typenum"
5655
- version = "1.16.0"
5785
+ version = "1.17.0"
5656
5786
  source = "registry+https://github.com/rust-lang/crates.io-index"
5657
- checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
5787
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
5658
5788
 
5659
5789
  [[package]]
5660
5790
  name = "unic-char-property"
@@ -5723,15 +5853,15 @@ checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7"
5723
5853
 
5724
5854
  [[package]]
5725
5855
  name = "unicode-id"
5726
- version = "0.3.3"
5856
+ version = "0.3.4"
5727
5857
  source = "registry+https://github.com/rust-lang/crates.io-index"
5728
- checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a"
5858
+ checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f"
5729
5859
 
5730
5860
  [[package]]
5731
5861
  name = "unicode-ident"
5732
- version = "1.0.9"
5862
+ version = "1.0.12"
5733
5863
  source = "registry+https://github.com/rust-lang/crates.io-index"
5734
- checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
5864
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
5735
5865
 
5736
5866
  [[package]]
5737
5867
  name = "unicode-normalization"
@@ -5756,9 +5886,9 @@ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
5756
5886
 
5757
5887
  [[package]]
5758
5888
  name = "unicode-width"
5759
- version = "0.1.10"
5889
+ version = "0.1.11"
5760
5890
  source = "registry+https://github.com/rust-lang/crates.io-index"
5761
- checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
5891
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
5762
5892
 
5763
5893
  [[package]]
5764
5894
  name = "unicode-xid"
@@ -5796,9 +5926,9 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
5796
5926
 
5797
5927
  [[package]]
5798
5928
  name = "url"
5799
- version = "2.4.0"
5929
+ version = "2.4.1"
5800
5930
  source = "registry+https://github.com/rust-lang/crates.io-index"
5801
- checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
5931
+ checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
5802
5932
  dependencies = [
5803
5933
  "form_urlencoded",
5804
5934
  "idna 0.4.0",
@@ -5825,7 +5955,7 @@ version = "0.35.0"
5825
5955
  source = "registry+https://github.com/rust-lang/crates.io-index"
5826
5956
  checksum = "14d09ddfb0d93bf84824c09336d32e42f80961a9d1680832eb24fdf249ce11e6"
5827
5957
  dependencies = [
5828
- "base64 0.21.2",
5958
+ "base64 0.21.4",
5829
5959
  "log",
5830
5960
  "pico-args",
5831
5961
  "usvg-parser",
@@ -5840,14 +5970,14 @@ version = "0.35.0"
5840
5970
  source = "registry+https://github.com/rust-lang/crates.io-index"
5841
5971
  checksum = "d19bf93d230813599927d88557014e0908ecc3531666d47c634c6838bc8db408"
5842
5972
  dependencies = [
5843
- "data-url",
5973
+ "data-url 0.2.0",
5844
5974
  "flate2",
5845
5975
  "imagesize",
5846
5976
  "kurbo",
5847
5977
  "log",
5848
5978
  "roxmltree",
5849
5979
  "simplecss",
5850
- "siphasher",
5980
+ "siphasher 0.3.11",
5851
5981
  "svgtypes",
5852
5982
  "usvg-tree",
5853
5983
  ]
@@ -5894,9 +6024,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
5894
6024
 
5895
6025
  [[package]]
5896
6026
  name = "uuid"
5897
- version = "1.3.4"
6027
+ version = "1.4.1"
5898
6028
  source = "registry+https://github.com/rust-lang/crates.io-index"
5899
- checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81"
6029
+ checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
5900
6030
  dependencies = [
5901
6031
  "getrandom 0.2.10",
5902
6032
  "serde",
@@ -5904,9 +6034,9 @@ dependencies = [
5904
6034
 
5905
6035
  [[package]]
5906
6036
  name = "v8"
5907
- version = "0.74.3"
6037
+ version = "0.76.0"
5908
6038
  source = "registry+https://github.com/rust-lang/crates.io-index"
5909
- checksum = "2eedac634b8dd39b889c5b62349cbc55913780226239166435c5cf66771792ea"
6039
+ checksum = "9d4e8ae7ef8b4e852e728e343cb6bb471a0424dfefa22585ea0c14a61252d73f"
5910
6040
  dependencies = [
5911
6041
  "bitflags 1.3.2",
5912
6042
  "fslock",
@@ -5928,12 +6058,12 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
5928
6058
 
5929
6059
  [[package]]
5930
6060
  name = "vl-convert"
5931
- version = "0.13.1"
6061
+ version = "0.14.0"
5932
6062
  dependencies = [
5933
6063
  "assert_cmd",
5934
6064
  "clap",
5935
6065
  "dssim",
5936
- "itertools",
6066
+ "itertools 0.11.0",
5937
6067
  "predicates",
5938
6068
  "rstest",
5939
6069
  "serde_json",
@@ -5943,9 +6073,25 @@ dependencies = [
5943
6073
  "vl-convert-rs",
5944
6074
  ]
5945
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
+
5946
6092
  [[package]]
5947
6093
  name = "vl-convert-python"
5948
- version = "0.13.1"
6094
+ version = "0.14.0"
5949
6095
  dependencies = [
5950
6096
  "futures",
5951
6097
  "lazy_static",
@@ -5957,7 +6103,7 @@ dependencies = [
5957
6103
 
5958
6104
  [[package]]
5959
6105
  name = "vl-convert-rs"
5960
- version = "0.13.1"
6106
+ version = "0.14.0"
5961
6107
  dependencies = [
5962
6108
  "deno_core",
5963
6109
  "deno_runtime",
@@ -5970,6 +6116,7 @@ dependencies = [
5970
6116
  "image",
5971
6117
  "lazy_static",
5972
6118
  "log",
6119
+ "lz-str",
5973
6120
  "png",
5974
6121
  "reqwest",
5975
6122
  "resvg",
@@ -5980,11 +6127,12 @@ dependencies = [
5980
6127
  "tiny-skia",
5981
6128
  "tokio",
5982
6129
  "usvg",
6130
+ "vl-convert-pdf",
5983
6131
  ]
5984
6132
 
5985
6133
  [[package]]
5986
6134
  name = "vl-convert-vendor"
5987
- version = "0.13.1"
6135
+ version = "0.14.0"
5988
6136
  dependencies = [
5989
6137
  "serde_json",
5990
6138
  ]
@@ -6012,8 +6160,8 @@ version = "0.1.1"
6012
6160
  source = "registry+https://github.com/rust-lang/crates.io-index"
6013
6161
  checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff"
6014
6162
  dependencies = [
6015
- "proc-macro2 1.0.66",
6016
- "quote 1.0.28",
6163
+ "proc-macro2 1.0.67",
6164
+ "quote 1.0.33",
6017
6165
  ]
6018
6166
 
6019
6167
  [[package]]
@@ -6027,9 +6175,9 @@ dependencies = [
6027
6175
 
6028
6176
  [[package]]
6029
6177
  name = "walkdir"
6030
- version = "2.3.3"
6178
+ version = "2.4.0"
6031
6179
  source = "registry+https://github.com/rust-lang/crates.io-index"
6032
- checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
6180
+ checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
6033
6181
  dependencies = [
6034
6182
  "same-file",
6035
6183
  "winapi-util",
@@ -6075,9 +6223,9 @@ dependencies = [
6075
6223
  "bumpalo",
6076
6224
  "log",
6077
6225
  "once_cell",
6078
- "proc-macro2 1.0.66",
6079
- "quote 1.0.28",
6080
- "syn 2.0.29",
6226
+ "proc-macro2 1.0.67",
6227
+ "quote 1.0.33",
6228
+ "syn 2.0.37",
6081
6229
  "wasm-bindgen-shared",
6082
6230
  ]
6083
6231
 
@@ -6099,7 +6247,7 @@ version = "0.2.87"
6099
6247
  source = "registry+https://github.com/rust-lang/crates.io-index"
6100
6248
  checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
6101
6249
  dependencies = [
6102
- "quote 1.0.28",
6250
+ "quote 1.0.33",
6103
6251
  "wasm-bindgen-macro-support",
6104
6252
  ]
6105
6253
 
@@ -6109,9 +6257,9 @@ version = "0.2.87"
6109
6257
  source = "registry+https://github.com/rust-lang/crates.io-index"
6110
6258
  checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
6111
6259
  dependencies = [
6112
- "proc-macro2 1.0.66",
6113
- "quote 1.0.28",
6114
- "syn 2.0.29",
6260
+ "proc-macro2 1.0.67",
6261
+ "quote 1.0.33",
6262
+ "syn 2.0.37",
6115
6263
  "wasm-bindgen-backend",
6116
6264
  "wasm-bindgen-shared",
6117
6265
  ]
@@ -6145,25 +6293,6 @@ dependencies = [
6145
6293
  "wasm-bindgen",
6146
6294
  ]
6147
6295
 
6148
- [[package]]
6149
- name = "webpki"
6150
- version = "0.22.0"
6151
- source = "registry+https://github.com/rust-lang/crates.io-index"
6152
- checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
6153
- dependencies = [
6154
- "ring",
6155
- "untrusted",
6156
- ]
6157
-
6158
- [[package]]
6159
- name = "webpki-roots"
6160
- version = "0.22.6"
6161
- source = "registry+https://github.com/rust-lang/crates.io-index"
6162
- checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
6163
- dependencies = [
6164
- "webpki",
6165
- ]
6166
-
6167
6296
  [[package]]
6168
6297
  name = "webpki-roots"
6169
6298
  version = "0.25.2"
@@ -6178,13 +6307,14 @@ checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
6178
6307
 
6179
6308
  [[package]]
6180
6309
  name = "which"
6181
- version = "4.4.0"
6310
+ version = "4.4.2"
6182
6311
  source = "registry+https://github.com/rust-lang/crates.io-index"
6183
- checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
6312
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
6184
6313
  dependencies = [
6185
6314
  "either",
6186
- "libc",
6315
+ "home",
6187
6316
  "once_cell",
6317
+ "rustix",
6188
6318
  ]
6189
6319
 
6190
6320
  [[package]]
@@ -6221,9 +6351,9 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
6221
6351
 
6222
6352
  [[package]]
6223
6353
  name = "winapi-util"
6224
- version = "0.1.5"
6354
+ version = "0.1.6"
6225
6355
  source = "registry+https://github.com/rust-lang/crates.io-index"
6226
- checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
6356
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
6227
6357
  dependencies = [
6228
6358
  "winapi",
6229
6359
  ]
@@ -6235,18 +6365,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6235
6365
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
6236
6366
 
6237
6367
  [[package]]
6238
- name = "windows-sys"
6239
- version = "0.42.0"
6368
+ name = "windows"
6369
+ version = "0.48.0"
6240
6370
  source = "registry+https://github.com/rust-lang/crates.io-index"
6241
- checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
6371
+ checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
6242
6372
  dependencies = [
6243
- "windows_aarch64_gnullvm 0.42.2",
6244
- "windows_aarch64_msvc 0.42.2",
6245
- "windows_i686_gnu 0.42.2",
6246
- "windows_i686_msvc 0.42.2",
6247
- "windows_x86_64_gnu 0.42.2",
6248
- "windows_x86_64_gnullvm 0.42.2",
6249
- "windows_x86_64_msvc 0.42.2",
6373
+ "windows-targets",
6250
6374
  ]
6251
6375
 
6252
6376
  [[package]]
@@ -6260,108 +6384,66 @@ dependencies = [
6260
6384
 
6261
6385
  [[package]]
6262
6386
  name = "windows-targets"
6263
- version = "0.48.0"
6387
+ version = "0.48.5"
6264
6388
  source = "registry+https://github.com/rust-lang/crates.io-index"
6265
- checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
6389
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
6266
6390
  dependencies = [
6267
- "windows_aarch64_gnullvm 0.48.0",
6268
- "windows_aarch64_msvc 0.48.0",
6269
- "windows_i686_gnu 0.48.0",
6270
- "windows_i686_msvc 0.48.0",
6271
- "windows_x86_64_gnu 0.48.0",
6272
- "windows_x86_64_gnullvm 0.48.0",
6273
- "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",
6274
6398
  ]
6275
6399
 
6276
6400
  [[package]]
6277
6401
  name = "windows_aarch64_gnullvm"
6278
- version = "0.42.2"
6279
- source = "registry+https://github.com/rust-lang/crates.io-index"
6280
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
6281
-
6282
- [[package]]
6283
- name = "windows_aarch64_gnullvm"
6284
- version = "0.48.0"
6402
+ version = "0.48.5"
6285
6403
  source = "registry+https://github.com/rust-lang/crates.io-index"
6286
- checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
6404
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
6287
6405
 
6288
6406
  [[package]]
6289
6407
  name = "windows_aarch64_msvc"
6290
- version = "0.42.2"
6408
+ version = "0.48.5"
6291
6409
  source = "registry+https://github.com/rust-lang/crates.io-index"
6292
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
6293
-
6294
- [[package]]
6295
- name = "windows_aarch64_msvc"
6296
- version = "0.48.0"
6297
- source = "registry+https://github.com/rust-lang/crates.io-index"
6298
- checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
6299
-
6300
- [[package]]
6301
- name = "windows_i686_gnu"
6302
- version = "0.42.2"
6303
- source = "registry+https://github.com/rust-lang/crates.io-index"
6304
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
6410
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
6305
6411
 
6306
6412
  [[package]]
6307
6413
  name = "windows_i686_gnu"
6308
- version = "0.48.0"
6309
- source = "registry+https://github.com/rust-lang/crates.io-index"
6310
- checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
6311
-
6312
- [[package]]
6313
- name = "windows_i686_msvc"
6314
- version = "0.42.2"
6414
+ version = "0.48.5"
6315
6415
  source = "registry+https://github.com/rust-lang/crates.io-index"
6316
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
6416
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
6317
6417
 
6318
6418
  [[package]]
6319
6419
  name = "windows_i686_msvc"
6320
- version = "0.48.0"
6321
- source = "registry+https://github.com/rust-lang/crates.io-index"
6322
- checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
6323
-
6324
- [[package]]
6325
- name = "windows_x86_64_gnu"
6326
- version = "0.42.2"
6420
+ version = "0.48.5"
6327
6421
  source = "registry+https://github.com/rust-lang/crates.io-index"
6328
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
6422
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
6329
6423
 
6330
6424
  [[package]]
6331
6425
  name = "windows_x86_64_gnu"
6332
- version = "0.48.0"
6333
- source = "registry+https://github.com/rust-lang/crates.io-index"
6334
- checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
6335
-
6336
- [[package]]
6337
- name = "windows_x86_64_gnullvm"
6338
- version = "0.42.2"
6426
+ version = "0.48.5"
6339
6427
  source = "registry+https://github.com/rust-lang/crates.io-index"
6340
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
6428
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
6341
6429
 
6342
6430
  [[package]]
6343
6431
  name = "windows_x86_64_gnullvm"
6344
- version = "0.48.0"
6345
- source = "registry+https://github.com/rust-lang/crates.io-index"
6346
- checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
6347
-
6348
- [[package]]
6349
- name = "windows_x86_64_msvc"
6350
- version = "0.42.2"
6432
+ version = "0.48.5"
6351
6433
  source = "registry+https://github.com/rust-lang/crates.io-index"
6352
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
6434
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
6353
6435
 
6354
6436
  [[package]]
6355
6437
  name = "windows_x86_64_msvc"
6356
- version = "0.48.0"
6438
+ version = "0.48.5"
6357
6439
  source = "registry+https://github.com/rust-lang/crates.io-index"
6358
- checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
6440
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
6359
6441
 
6360
6442
  [[package]]
6361
6443
  name = "winnow"
6362
- version = "0.4.7"
6444
+ version = "0.5.15"
6363
6445
  source = "registry+https://github.com/rust-lang/crates.io-index"
6364
- checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448"
6446
+ checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
6365
6447
  dependencies = [
6366
6448
  "memchr",
6367
6449
  ]
@@ -6373,7 +6455,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6373
6455
  checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
6374
6456
  dependencies = [
6375
6457
  "cfg-if",
6376
- "windows-sys 0.48.0",
6458
+ "windows-sys",
6377
6459
  ]
6378
6460
 
6379
6461
  [[package]]
@@ -6387,11 +6469,11 @@ dependencies = [
6387
6469
 
6388
6470
  [[package]]
6389
6471
  name = "x25519-dalek"
6390
- version = "2.0.0-rc.3"
6472
+ version = "2.0.0"
6391
6473
  source = "registry+https://github.com/rust-lang/crates.io-index"
6392
- checksum = "ec7fae07da688e17059d5886712c933bb0520f15eff2e09cfa18e30968f4e63a"
6474
+ checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
6393
6475
  dependencies = [
6394
- "curve25519-dalek 4.0.0-rc.3",
6476
+ "curve25519-dalek 4.1.1",
6395
6477
  "rand_core 0.6.4",
6396
6478
  "serde",
6397
6479
  "zeroize",
@@ -6399,9 +6481,9 @@ dependencies = [
6399
6481
 
6400
6482
  [[package]]
6401
6483
  name = "x509-parser"
6402
- version = "0.15.0"
6484
+ version = "0.15.1"
6403
6485
  source = "registry+https://github.com/rust-lang/crates.io-index"
6404
- checksum = "bab0c2f54ae1d92f4fcb99c0b7ccf0b1e3451cbd395e5f115ccbdbcb18d4f634"
6486
+ checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da"
6405
6487
  dependencies = [
6406
6488
  "asn1-rs",
6407
6489
  "data-encoding",
@@ -6441,9 +6523,9 @@ version = "1.4.2"
6441
6523
  source = "registry+https://github.com/rust-lang/crates.io-index"
6442
6524
  checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
6443
6525
  dependencies = [
6444
- "proc-macro2 1.0.66",
6445
- "quote 1.0.28",
6446
- "syn 2.0.29",
6526
+ "proc-macro2 1.0.67",
6527
+ "quote 1.0.33",
6528
+ "syn 2.0.37",
6447
6529
  ]
6448
6530
 
6449
6531
  [[package]]