vl-convert-python 2.0.0rc1__tar.gz → 2.0.0rc5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (593) hide show
  1. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/Cargo.lock +3402 -2183
  2. vl_convert_python-2.0.0rc5/Cargo.toml +81 -0
  3. vl_convert_python-2.0.0rc1/vl-convert-python/README.md → vl_convert_python-2.0.0rc5/PKG-INFO +104 -0
  4. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/pyproject.toml +15 -5
  5. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/Cargo.toml +6 -6
  6. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/text_rendering.rs +11 -1
  7. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/font_config.rs +18 -0
  8. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/text.rs +42 -1
  9. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/Cargo.toml +6 -6
  10. vl_convert_python-2.0.0rc5/vl-convert-canvas2d-deno/src/js/canvas_element_polyfill.js +117 -0
  11. vl_convert_python-2.0.0rc5/vl-convert-canvas2d-deno/src/js/canvas_polyfill.js +39 -0
  12. vl_convert_python-2.0.0rc1/vl-convert-canvas2d-deno/src/js/canvas_polyfill.js → vl_convert_python-2.0.0rc5/vl-convert-canvas2d-deno/src/js/context_polyfill.js +18 -440
  13. vl_convert_python-2.0.0rc5/vl-convert-canvas2d-deno/src/js/image_polyfill.js +376 -0
  14. vl_convert_python-2.0.0rc5/vl-convert-canvas2d-deno/src/js/path2d_polyfill.js +103 -0
  15. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/lib.rs +4 -0
  16. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/image_ops.rs +1 -1
  17. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/Cargo.toml +32 -0
  18. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/README.md +15 -0
  19. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/cache.rs +521 -0
  20. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/client.rs +1185 -0
  21. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/config.rs +78 -0
  22. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/error.rs +93 -0
  23. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/fontdb_ext.rs +64 -0
  24. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/lib.rs +21 -0
  25. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/resolve.rs +429 -0
  26. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/src/types.rs +345 -0
  27. vl_convert_python-2.0.0rc5/vl-convert-google-fonts/tests/load_google_fonts.rs +993 -0
  28. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/Cargo.toml +7 -8
  29. vl_convert_python-2.0.0rc5/vl-convert-python/LICENSE +11 -0
  30. vl_convert_python-2.0.0rc1/PKG-INFO → vl_convert_python-2.0.0rc5/vl-convert-python/README.md +86 -13
  31. vl_convert_python-2.0.0rc5/vl-convert-python/src/config.rs +722 -0
  32. vl_convert_python-2.0.0rc5/vl-convert-python/src/conversions.rs +2298 -0
  33. vl_convert_python-2.0.0rc5/vl-convert-python/src/fonts.rs +495 -0
  34. vl_convert_python-2.0.0rc5/vl-convert-python/src/info.rs +300 -0
  35. vl_convert_python-2.0.0rc5/vl-convert-python/src/lib.rs +138 -0
  36. vl_convert_python-2.0.0rc5/vl-convert-python/src/utils.rs +223 -0
  37. vl_convert_python-2.0.0rc5/vl-convert-python/tests/.gitignore +3 -0
  38. vl_convert_python-2.0.0rc5/vl-convert-python/tests/conftest.py +72 -0
  39. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/circle_binned_bundle.png +0 -0
  40. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/circle_binned_cdn.png +0 -0
  41. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/google_fonts_bundle.png +0 -0
  42. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/google_fonts_cdn.png +0 -0
  43. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/html/.gitignore +1 -0
  44. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/local_font_bundle.png +0 -0
  45. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/pacifico_bundle.png +0 -0
  46. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_custom_scheme_bundle.png +0 -0
  47. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_custom_scheme_cdn.png +0 -0
  48. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_http_import_bundle.png +0 -0
  49. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_http_import_cdn.png +0 -0
  50. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_url_entry_bundle.png +0 -0
  51. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_url_entry_cdn.png +0 -0
  52. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_url_redirect_bundle.png +0 -0
  53. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/plugin_url_relative_imports_bundle.png +0 -0
  54. vl_convert_python-2.0.0rc5/vl-convert-python/tests/html-baselines/stacked_bar_bundle.png +0 -0
  55. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/html/.gitignore +1 -0
  56. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/svg/.gitignore +1 -0
  57. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/svg_google_fonts_bundle.png +0 -0
  58. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/svg_google_fonts_cdn.png +0 -0
  59. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/svg_local_font_bundle.png +0 -0
  60. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/svg_pacifico_bundle.png +0 -0
  61. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/svg_remote_images_bundle.png +0 -0
  62. vl_convert_python-2.0.0rc5/vl-convert-python/tests/svg-baselines/svg_remote_images_no_bundle.png +0 -0
  63. vl_convert_python-2.0.0rc5/vl-convert-python/tests/test_access_policy.py +331 -0
  64. vl_convert_python-2.0.0rc5/vl-convert-python/tests/test_asyncio.py +211 -0
  65. vl_convert_python-2.0.0rc5/vl-convert-python/tests/test_html_rendering.py +537 -0
  66. vl_convert_python-2.0.0rc5/vl-convert-python/tests/test_per_call_opts.py +97 -0
  67. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_specs.py +51 -10
  68. vl_convert_python-2.0.0rc5/vl-convert-python/tests/test_svg_rendering.py +310 -0
  69. vl_convert_python-2.0.0rc5/vl-convert-python/tests/test_warnings.py +123 -0
  70. vl_convert_python-2.0.0rc5/vl-convert-python/tests/test_workers.py +199 -0
  71. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/thirdparty_rust.yaml +42576 -32063
  72. vl_convert_python-2.0.0rc5/vl-convert-python/vl_convert.pyi +1843 -0
  73. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/Cargo.toml +37 -9
  74. vl_convert_python-2.0.0rc5/vl-convert-rs/LICENSE +11 -0
  75. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/README.md +3 -0
  76. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/benches/scenegraph_scatter.rs +20 -18
  77. vl_convert_python-2.0.0rc5/vl-convert-rs/build.rs +265 -0
  78. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/examples/conversion1.rs +3 -3
  79. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/config.rs +636 -0
  80. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/fonts.rs +600 -0
  81. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/inner/conversions.rs +450 -0
  82. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/inner/fonts.rs +210 -0
  83. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/inner/init.rs +521 -0
  84. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/inner/mod.rs +884 -0
  85. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/inner/rendering.rs +313 -0
  86. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/inner/runtime.rs +345 -0
  87. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/mod.rs +2601 -0
  88. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/permissions.rs +181 -0
  89. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/plugin.rs +110 -0
  90. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/rendering.rs +379 -0
  91. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/transfer.rs +195 -0
  92. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/types.rs +372 -0
  93. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/value_or_string.rs +79 -0
  94. vl_convert_python-2.0.0rc5/vl-convert-rs/src/converter/worker_pool.rs +463 -0
  95. vl_convert_python-2.0.0rc5/vl-convert-rs/src/data_ops.rs +661 -0
  96. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/mod.rs +5 -0
  97. vl_convert_python-2.0.0rc5/vl-convert-rs/src/extract/mod.rs +9 -0
  98. vl_convert_python-2.0.0rc5/vl-convert-rs/src/extract/scenegraph.rs +138 -0
  99. vl_convert_python-2.0.0rc5/vl-convert-rs/src/extract/svg.rs +449 -0
  100. vl_convert_python-2.0.0rc5/vl-convert-rs/src/extract/types.rs +499 -0
  101. vl_convert_python-2.0.0rc5/vl-convert-rs/src/extract/vega.rs +808 -0
  102. vl_convert_python-2.0.0rc5/vl-convert-rs/src/font_embed.rs +892 -0
  103. vl_convert_python-2.0.0rc5/vl-convert-rs/src/html.rs +1033 -0
  104. vl_convert_python-2.0.0rc5/vl-convert-rs/src/image_loading.rs +545 -0
  105. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/js/bootstrap.js +12 -1
  106. vl_convert_python-2.0.0rc5/vl-convert-rs/src/lib.rs +53 -0
  107. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/module_loader/import_map.rs +77 -76
  108. vl_convert_python-2.0.0rc5/vl-convert-rs/src/module_loader/mod.rs +329 -0
  109. vl_convert_python-2.0.0rc5/vl-convert-rs/src/svg_font.rs +343 -0
  110. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/text.rs +167 -66
  111. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/specs/expected/plugin_custom_scheme.png +0 -0
  112. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/specs/plugin_custom_scheme.vg.json +53 -0
  113. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/svg-specs/expected/svg_auto_google_fonts.png +0 -0
  114. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/svg-specs/expected/svg_auto_google_fonts_pacifico.png +0 -0
  115. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/test_config.rs +203 -0
  116. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/test_heap_limit.rs +289 -0
  117. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/test_plugins.rs +526 -0
  118. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_specs.rs +252 -247
  119. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_themes.rs +1 -1
  120. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/test_utils.rs +135 -0
  121. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.svg +1 -0
  122. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned-dark.png +0 -0
  123. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.png +0 -0
  124. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.svg +1 -0
  125. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.png +0 -0
  126. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.svg +1 -0
  127. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.svg +1 -0
  128. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/font_with_quotes.png +0 -0
  129. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/geoScale.png +0 -0
  130. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/geoScale.sg.json +2 -2
  131. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/gh_174.png +0 -0
  132. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/google_fonts.png +0 -0
  133. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.svg +1 -0
  134. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background.png +0 -0
  135. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background_2.png +0 -0
  136. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.svg +1 -0
  137. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/numeric_font_weight.svg +1 -0
  138. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/quakes_initial_selection.png +0 -0
  139. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.svg +1 -0
  140. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/google_fonts.vl.json +16 -0
  141. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/local_font.vl.json +20 -0
  142. vl_convert_python-2.0.0rc5/vl-convert-rs/tests/vl-specs/pacifico_title.vl.json +19 -0
  143. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/thirdparty_rust.yaml +42576 -32063
  144. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#fast-json-stable-str_a4987/#+esm_3b53f.js +8 -0
  145. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#json-stringify-prett_2eaac/#+esm_3b53f.js +10 -0
  146. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/@msgpack/msgpack@3.1.3/#+esm_3b53f.js +8 -0
  147. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/clone@2.1.2/#+esm_3b53f.js +8 -0
  148. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-array@3.2.4/#+esm_3b53f.js +8 -0
  149. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-color@3.1.0/#+esm_3b53f.js +8 -0
  150. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-delaunay@6.0.4/#+esm_3b53f.js +8 -0
  151. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dispatch@3.0.1/#+esm_3b53f.js +8 -0
  152. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dsv@3.0.1/#+esm_3b53f.js +12 -0
  153. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-ease@3.0.1/#+esm_3b53f.js +8 -0
  154. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-force@3.0.0/#+esm_3b53f.js +8 -0
  155. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-format@3.1.2/#+esm_3b53f.js +8 -0
  156. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo-projection@4.0.0/#+esm_3b53f.js +8 -0
  157. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo@3.1.1/#+esm_3b53f.js +8 -0
  158. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-hierarchy@3.1.2/#+esm_3b53f.js +8 -0
  159. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-interpolate@3.0.1/#+esm_3b53f.js +8 -0
  160. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-path@3.1.0/#+esm_3b53f.js +8 -0
  161. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-quadtree@3.0.1/#+esm_3b53f.js +8 -0
  162. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale-chromatic@3.1.0/#+esm_3b53f.js +8 -0
  163. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale@4.0.2/#+esm_3b53f.js +8 -0
  164. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-shape@3.2.0/#+esm_3b53f.js +8 -0
  165. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time-format@4.1.0/#+esm_3b53f.js +8 -0
  166. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time@3.1.0/#+esm_3b53f.js +8 -0
  167. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-timer@3.0.1/#+esm_3b53f.js +8 -0
  168. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/delaunator@5.0.0/#+esm_3b53f.js +8 -0
  169. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/fast-deep-equal@3.1.3/#+esm_3b53f.js +8 -0
  170. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/internmap@2.0.3/#+esm_3b53f.js +8 -0
  171. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/lodash.debounce@4.0.8/#+esm_3b53f.js +8 -0
  172. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/robust-predicates@3.0.0/#+esm_3b53f.js +8 -0
  173. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/topojson-client@3.1.0/#+esm_3b53f.js +8 -0
  174. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-canvas@2.0.0/#+esm_3b53f.js +8 -0
  175. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-crossfilter@5.1.3/#+esm_3b53f.js +8 -0
  176. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-dataflow@6.1.3/#+esm_3b53f.js +8 -0
  177. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-embed@7.2.0/#+esm_3b53f.js +136 -0
  178. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-encode@5.2.2/#+esm_3b53f.js +8 -0
  179. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-event-selector@4.0.0/#+esm_3b53f.js +8 -0
  180. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-expression@6.2.2/#+esm_3b53f.js +10 -0
  181. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-force@5.1.3/#+esm_3b53f.js +8 -0
  182. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-format@2.1.3/#+esm_3b53f.js +8 -0
  183. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-functions@6.2.0/#+esm_3b53f.js +8 -0
  184. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-geo@5.1.3/#+esm_3b53f.js +8 -0
  185. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-hierarchy@5.1.3/#+esm_3b53f.js +8 -0
  186. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-interpreter@2.3.2/#+esm_3b53f.js +8 -0
  187. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-label@2.1.3/#+esm_3b53f.js +8 -0
  188. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.14.1/#+esm_3b53f.js +8 -0
  189. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.15.1/#+esm_3b53f.js +8 -0
  190. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.16.3/#+esm_3b53f.js +8 -0
  191. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.17.0/#+esm_3b53f.js +8 -0
  192. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.20.1/#+esm_3b53f.js +8 -0
  193. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.21.0/#+esm_3b53f.js +8 -0
  194. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.8.0/#+esm_3b53f.js +8 -0
  195. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.1.0/#+esm_3b53f.js +8 -0
  196. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.4.3/#+esm_3b53f.js +8 -0
  197. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-loader@5.1.3/#+esm_3b53f.js +9 -0
  198. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-parser@7.1.3/#+esm_3b53f.js +8 -0
  199. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-projection@2.1.3/#+esm_3b53f.js +8 -0
  200. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-regression@2.1.3/#+esm_3b53f.js +8 -0
  201. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-runtime@7.1.3/#+esm_3b53f.js +11 -0
  202. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scale@8.1.3/#+esm_3b53f.js +8 -0
  203. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scenegraph@5.3.0/#+esm_3b53f.js +9 -0
  204. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-schema-url-parser@3.0.2/#+esm_3b53f.js +8 -0
  205. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-selections@6.1.5/#+esm_3b53f.js +8 -0
  206. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-statistics@2.0.0/#+esm_3b53f.js +8 -0
  207. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-themes@3.0.0/#+esm_3b53f.js +8 -0
  208. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-time@3.3.0/#+esm_3b53f.js +8 -0
  209. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-tooltip@1.1.0/#+esm_3b53f.js +66 -0
  210. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-transforms@5.2.2/#+esm_3b53f.js +8 -0
  211. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-util@2.1.3/#+esm_3b53f.js +8 -0
  212. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view-transforms@5.2.2/#+esm_3b53f.js +8 -0
  213. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view@6.2.0/#+esm_3b53f.js +9 -0
  214. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-voronoi@5.1.3/#+esm_3b53f.js +8 -0
  215. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-wordcloud@5.1.3/#+esm_3b53f.js +8 -0
  216. vl_convert_python-2.0.0rc5/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega@6.4.0/#+esm_3b53f.js +8 -0
  217. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/manifest.json +348 -128
  218. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor_imports.js +4 -4
  219. vl_convert_python-2.0.0rc1/Cargo.toml +0 -57
  220. vl_convert_python-2.0.0rc1/vl-convert-python/src/lib.rs +0 -1302
  221. vl_convert_python-2.0.0rc1/vl-convert-python/tests/conftest.py +0 -13
  222. vl_convert_python-2.0.0rc1/vl-convert-python/vl_convert.pyi +0 -861
  223. vl_convert_python-2.0.0rc1/vl-convert-rs/build.rs +0 -69
  224. vl_convert_python-2.0.0rc1/vl-convert-rs/src/converter.rs +0 -2623
  225. vl_convert_python-2.0.0rc1/vl-convert-rs/src/html.rs +0 -71
  226. vl_convert_python-2.0.0rc1/vl-convert-rs/src/image_loading.rs +0 -105
  227. vl_convert_python-2.0.0rc1/vl-convert-rs/src/lib.rs +0 -26
  228. vl_convert_python-2.0.0rc1/vl-convert-rs/src/module_loader/mod.rs +0 -181
  229. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.svg +0 -1
  230. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.svg +0 -1
  231. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.svg +0 -1
  232. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.svg +0 -1
  233. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/font_with_quotes.png +0 -0
  234. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/geoScale.png +0 -0
  235. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.svg +0 -1
  236. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background.png +0 -0
  237. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background_2.png +0 -0
  238. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.svg +0 -1
  239. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/numeric_font_weight.svg +0 -1
  240. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/quakes_initial_selection.png +0 -0
  241. vl_convert_python-2.0.0rc1/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.svg +0 -1
  242. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#fast-json-stable-str_a4987/#+esm_3b53f.js +0 -8
  243. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#json-stringify-prett_2eaac/#+esm_3b53f.js +0 -8
  244. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/@msgpack/msgpack@3.1.2/#+esm_3b53f.js +0 -8
  245. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/clone@2.1.2/#+esm_3b53f.js +0 -8
  246. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-array@3.2.4/#+esm_3b53f.js +0 -8
  247. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-color@3.1.0/#+esm_3b53f.js +0 -8
  248. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-delaunay@6.0.4/#+esm_3b53f.js +0 -8
  249. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dispatch@3.0.1/#+esm_3b53f.js +0 -8
  250. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dsv@3.0.1/#+esm_3b53f.js +0 -8
  251. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-force@3.0.0/#+esm_3b53f.js +0 -8
  252. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-format@3.1.0/#+esm_3b53f.js +0 -8
  253. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo-projection@4.0.0/#+esm_3b53f.js +0 -8
  254. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo@3.1.1/#+esm_3b53f.js +0 -8
  255. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-hierarchy@3.1.2/#+esm_3b53f.js +0 -8
  256. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-interpolate@3.0.1/#+esm_3b53f.js +0 -8
  257. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-path@3.1.0/#+esm_3b53f.js +0 -8
  258. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-quadtree@3.0.1/#+esm_3b53f.js +0 -8
  259. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale-chromatic@3.1.0/#+esm_3b53f.js +0 -8
  260. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale@4.0.2/#+esm_3b53f.js +0 -8
  261. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-shape@3.2.0/#+esm_3b53f.js +0 -8
  262. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time-format@4.1.0/#+esm_3b53f.js +0 -8
  263. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time@3.1.0/#+esm_3b53f.js +0 -8
  264. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-timer@3.0.1/#+esm_3b53f.js +0 -8
  265. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/delaunator@5.0.0/#+esm_3b53f.js +0 -8
  266. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/fast-deep-equal@3.1.3/#+esm_3b53f.js +0 -8
  267. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/internmap@2.0.3/#+esm_3b53f.js +0 -8
  268. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/lodash.debounce@4.0.8/#+esm_3b53f.js +0 -8
  269. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/robust-predicates@3.0.0/#+esm_3b53f.js +0 -8
  270. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/topojson-client@3.1.0/#+esm_3b53f.js +0 -8
  271. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-canvas@2.0.0/#+esm_3b53f.js +0 -8
  272. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-crossfilter@5.1.0/#+esm_3b53f.js +0 -8
  273. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-dataflow@6.1.0/#+esm_3b53f.js +0 -8
  274. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-embed@7.1.0/#+esm_3b53f.js +0 -18
  275. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-encode@5.1.0/#+esm_3b53f.js +0 -8
  276. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-event-selector@4.0.0/#+esm_3b53f.js +0 -8
  277. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-expression@6.1.0/#+esm_3b53f.js +0 -8
  278. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-force@5.1.0/#+esm_3b53f.js +0 -8
  279. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-format@2.1.0/#+esm_3b53f.js +0 -8
  280. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-functions@6.1.0/#+esm_3b53f.js +0 -8
  281. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-geo@5.1.0/#+esm_3b53f.js +0 -8
  282. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-hierarchy@5.1.0/#+esm_3b53f.js +0 -8
  283. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-interpreter@2.2.1/#+esm_3b53f.js +0 -8
  284. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-label@2.1.0/#+esm_3b53f.js +0 -8
  285. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.14.1/#+esm_3b53f.js +0 -8
  286. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.15.1/#+esm_3b53f.js +0 -8
  287. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.16.3/#+esm_3b53f.js +0 -8
  288. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.17.0/#+esm_3b53f.js +0 -8
  289. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.20.1/#+esm_3b53f.js +0 -8
  290. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.21.0/#+esm_3b53f.js +0 -8
  291. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.8.0/#+esm_3b53f.js +0 -8
  292. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.1.0/#+esm_3b53f.js +0 -8
  293. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.4.1/#+esm_3b53f.js +0 -8
  294. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.4.2/#+esm_3b53f.js +0 -8
  295. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-loader@5.1.0/#+esm_3b53f.js +0 -8
  296. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-parser@7.1.0/#+esm_3b53f.js +0 -8
  297. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-projection@2.1.0/#+esm_3b53f.js +0 -8
  298. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-regression@2.1.0/#+esm_3b53f.js +0 -8
  299. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-runtime@7.1.0/#+esm_3b53f.js +0 -8
  300. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scale@8.1.0/#+esm_3b53f.js +0 -8
  301. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scenegraph@5.1.0/#+esm_3b53f.js +0 -8
  302. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-schema-url-parser@3.0.2/#+esm_3b53f.js +0 -8
  303. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-selections@6.1.0/#+esm_3b53f.js +0 -8
  304. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-statistics@2.0.0/#+esm_3b53f.js +0 -8
  305. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-themes@3.0.0/#+esm_3b53f.js +0 -8
  306. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-time@3.1.0/#+esm_3b53f.js +0 -8
  307. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-tooltip@1.0.0/#+esm_3b53f.js +0 -8
  308. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-transforms@5.1.0/#+esm_3b53f.js +0 -8
  309. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-util@2.1.0/#+esm_3b53f.js +0 -8
  310. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view-transforms@5.1.0/#+esm_3b53f.js +0 -8
  311. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view@6.1.0/#+esm_3b53f.js +0 -8
  312. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-voronoi@5.1.0/#+esm_3b53f.js +0 -8
  313. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-wordcloud@5.1.0/#+esm_3b53f.js +0 -8
  314. vl_convert_python-2.0.0rc1/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega@6.2.0/#+esm_3b53f.js +0 -8
  315. {vl_convert_python-2.0.0rc1/vl-convert-python → vl_convert_python-2.0.0rc5}/LICENSE +0 -0
  316. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/README.md +0 -0
  317. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/arc.rs +0 -0
  318. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/drawing.rs +0 -0
  319. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/image_ops.rs +0 -0
  320. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/mod.rs +0 -0
  321. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/path_ops.rs +0 -0
  322. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/transform.rs +0 -0
  323. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/dom_matrix.rs +0 -0
  324. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/drawing_state.rs +0 -0
  325. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/error.rs +0 -0
  326. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/font_parser.rs +0 -0
  327. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/geometry.rs +0 -0
  328. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/gradient.rs +0 -0
  329. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/lib.rs +0 -0
  330. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/path2d.rs +0 -0
  331. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/pattern.rs +0 -0
  332. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/pattern_cache.rs +0 -0
  333. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/style.rs +0 -0
  334. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/basic_drawing.rs +0 -0
  335. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/clipping.rs +0 -0
  336. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/common.rs +0 -0
  337. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/fractional_coords.rs +0 -0
  338. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/gradients.rs +0 -0
  339. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/image_data.rs +0 -0
  340. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/image_smoothing.rs +0 -0
  341. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/main.rs +0 -0
  342. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/max_width_text.rs +0 -0
  343. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/path2d_features.rs +0 -0
  344. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/patterns.rs +0 -0
  345. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/put_image_data.rs +0 -0
  346. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/transform_timing.rs +0 -0
  347. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/integration_tests.rs +0 -0
  348. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/README.md +0 -0
  349. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/drawing.rs +0 -0
  350. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/mod.rs +0 -0
  351. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/path_ops.rs +0 -0
  352. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/state.rs +0 -0
  353. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/text.rs +0 -0
  354. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/transform.rs +0 -0
  355. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/resource.rs +0 -0
  356. {vl_convert_python-2.0.0rc1/vl-convert-rs → vl_convert_python-2.0.0rc5/vl-convert-google-fonts}/LICENSE +0 -0
  357. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/CLAUDE.md +0 -0
  358. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/notebooks/convert_vegalite.ipynb +0 -0
  359. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_get_local_tz.py +0 -0
  360. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_get_locales.py +0 -0
  361. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_themes.py +0 -0
  362. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/thirdparty_font.md +0 -0
  363. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-python/thirdparty_javascript.md +0 -0
  364. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/CLAUDE.md +0 -0
  365. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Bold.ttf +0 -0
  366. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-BoldItalic.ttf +0 -0
  367. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Italic.ttf +0 -0
  368. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Regular.ttf +0 -0
  369. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/SIL Open Font License.txt +0 -0
  370. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-001.json +0 -0
  371. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-AE.json +0 -0
  372. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-BH.json +0 -0
  373. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-DJ.json +0 -0
  374. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-DZ.json +0 -0
  375. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-EG.json +0 -0
  376. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-EH.json +0 -0
  377. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-ER.json +0 -0
  378. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-IL.json +0 -0
  379. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-IQ.json +0 -0
  380. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-JO.json +0 -0
  381. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-KM.json +0 -0
  382. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-KW.json +0 -0
  383. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-LB.json +0 -0
  384. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-LY.json +0 -0
  385. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-MA.json +0 -0
  386. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-MR.json +0 -0
  387. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-OM.json +0 -0
  388. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-PS.json +0 -0
  389. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-QA.json +0 -0
  390. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SA.json +0 -0
  391. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SD.json +0 -0
  392. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SO.json +0 -0
  393. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SS.json +0 -0
  394. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SY.json +0 -0
  395. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-TD.json +0 -0
  396. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-TN.json +0 -0
  397. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-YE.json +0 -0
  398. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ca-ES.json +0 -0
  399. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/cs-CZ.json +0 -0
  400. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/da-DK.json +0 -0
  401. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/de-CH.json +0 -0
  402. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/de-DE.json +0 -0
  403. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-CA.json +0 -0
  404. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-GB.json +0 -0
  405. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-IE.json +0 -0
  406. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-IN.json +0 -0
  407. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-US.json +0 -0
  408. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/es-BO.json +0 -0
  409. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/es-ES.json +0 -0
  410. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/es-MX.json +0 -0
  411. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/fi-FI.json +0 -0
  412. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/fr-CA.json +0 -0
  413. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/fr-FR.json +0 -0
  414. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/he-IL.json +0 -0
  415. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/hu-HU.json +0 -0
  416. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/it-IT.json +0 -0
  417. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ja-JP.json +0 -0
  418. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ko-KR.json +0 -0
  419. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/mk-MK.json +0 -0
  420. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/nl-NL.json +0 -0
  421. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/pl-PL.json +0 -0
  422. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/pt-BR.json +0 -0
  423. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/pt-PT.json +0 -0
  424. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ru-RU.json +0 -0
  425. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/sl-SI.json +0 -0
  426. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/sv-SE.json +0 -0
  427. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/uk-UA.json +0 -0
  428. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/zh-CN.json +0 -0
  429. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ar-EG.json +0 -0
  430. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ar-SY.json +0 -0
  431. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ca-ES.json +0 -0
  432. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/cs-CZ.json +0 -0
  433. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/da-DK.json +0 -0
  434. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/de-CH.json +0 -0
  435. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/de-DE.json +0 -0
  436. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/en-CA.json +0 -0
  437. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/en-GB.json +0 -0
  438. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/en-US.json +0 -0
  439. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/es-ES.json +0 -0
  440. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/es-MX.json +0 -0
  441. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fa-IR.json +0 -0
  442. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fi-FI.json +0 -0
  443. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fr-CA.json +0 -0
  444. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fr-FR.json +0 -0
  445. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/he-IL.json +0 -0
  446. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/hr-HR.json +0 -0
  447. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/hu-HU.json +0 -0
  448. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/it-IT.json +0 -0
  449. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ja-JP.json +0 -0
  450. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ko-KR.json +0 -0
  451. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/mk-MK.json +0 -0
  452. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/nb-NO.json +0 -0
  453. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/nl-BE.json +0 -0
  454. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/nl-NL.json +0 -0
  455. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/pl-PL.json +0 -0
  456. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/pt-BR.json +0 -0
  457. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ru-RU.json +0 -0
  458. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/sv-SE.json +0 -0
  459. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/tr-TR.json +0 -0
  460. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/uk-UA.json +0 -0
  461. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/vi-VN.json +0 -0
  462. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/zh-CN.json +0 -0
  463. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/zh-TW.json +0 -0
  464. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/bundle_hook.rs +0 -0
  465. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/emit.rs +0 -0
  466. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/text.rs +0 -0
  467. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_stubs.rs +0 -0
  468. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/Caveat-VariableFont_wght.ttf +0 -0
  469. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/OFL.txt +0 -0
  470. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/README.txt +0 -0
  471. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Bold.ttf +0 -0
  472. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Medium.ttf +0 -0
  473. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Regular.ttf +0 -0
  474. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-SemiBold.ttf +0 -0
  475. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Bold.ttf +0 -0
  476. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-BoldItalic.ttf +0 -0
  477. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Heavy.ttf +0 -0
  478. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-HeavyItalic.ttf +0 -0
  479. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Light.ttf +0 -0
  480. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-LightItalic.ttf +0 -0
  481. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Medium.ttf +0 -0
  482. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-MediumItalic.ttf +0 -0
  483. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Regular.ttf +0 -0
  484. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-RegularItalic.ttf +0 -0
  485. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-SemiBold.ttf +0 -0
  486. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-SemiBoldItalic.ttf +0 -0
  487. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/demo.html +0 -0
  488. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/stylesheet.css +0 -0
  489. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/locale/format/it-IT.json +0 -0
  490. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/locale/time-format/it-IT.json +0 -0
  491. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/expected/label_movies_scatter.png +0 -0
  492. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/expected/label_scatter_plot.png +0 -0
  493. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/expected/label_transform_test.png +0 -0
  494. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/label_movies_scatter.vg.json +0 -0
  495. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/label_scatter_plot.vg.json +0 -0
  496. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/label_transform_test.vg.json +0 -0
  497. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/bar_chart_trellis_compact.vl.json +0 -0
  498. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/circle_binned.vl.json +0 -0
  499. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/circle_binned_base_url.vl.json +0 -0
  500. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/custom_projection.vl.json +0 -0
  501. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.json +0 -0
  502. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.pretty.json +0 -0
  503. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.json +0 -0
  504. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.pretty.json +0 -0
  505. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.json +0 -0
  506. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.pretty.json +0 -0
  507. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/circle_binned.vg.json +0 -0
  508. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/circle_binned.vg.pretty.json +0 -0
  509. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/seattle-weather.vg.json +0 -0
  510. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/seattle-weather.vg.pretty.json +0 -0
  511. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/stacked_bar_h.vg.json +0 -0
  512. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/stacked_bar_h.vg.pretty.json +0 -0
  513. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/circle_binned.vg.json +0 -0
  514. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/circle_binned.vg.pretty.json +0 -0
  515. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/seattle-weather.vg.json +0 -0
  516. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/seattle-weather.vg.pretty.json +0 -0
  517. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/stacked_bar_h.vg.json +0 -0
  518. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/stacked_bar_h.vg.pretty.json +0 -0
  519. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/circle_binned.vg.json +0 -0
  520. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/circle_binned.vg.pretty.json +0 -0
  521. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/seattle-weather.vg.json +0 -0
  522. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/seattle-weather.vg.pretty.json +0 -0
  523. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/stacked_bar_h.vg.json +0 -0
  524. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/stacked_bar_h.vg.pretty.json +0 -0
  525. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/circle_binned.vg.json +0 -0
  526. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/circle_binned.vg.pretty.json +0 -0
  527. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/seattle-weather.vg.json +0 -0
  528. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/seattle-weather.vg.pretty.json +0 -0
  529. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/stacked_bar_h.vg.json +0 -0
  530. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/stacked_bar_h.vg.pretty.json +0 -0
  531. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/circle_binned.vg.json +0 -0
  532. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/circle_binned.vg.pretty.json +0 -0
  533. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/seattle-weather.vg.json +0 -0
  534. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/seattle-weather.vg.pretty.json +0 -0
  535. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/stacked_bar_h.vg.json +0 -0
  536. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/stacked_bar_h.vg.pretty.json +0 -0
  537. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact-excel.png +0 -0
  538. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.png +0 -0
  539. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.json +0 -0
  540. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.pretty.json +0 -0
  541. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/custom_projection.png +0 -0
  542. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.png +0 -0
  543. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale-fivethirtyeight.png +0 -0
  544. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.png +0 -0
  545. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/long_legend_label.png +0 -0
  546. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/long_text_lable.png +0 -0
  547. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/lookup_urls.png +0 -0
  548. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.png +0 -0
  549. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.sg.json +0 -0
  550. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/remote_images.png +0 -0
  551. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/seattle-weather.vg.json +0 -0
  552. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/seattle-weather.vg.pretty.json +0 -0
  553. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h-vox.png +0 -0
  554. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.png +0 -0
  555. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.json +0 -0
  556. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.pretty.json +0 -0
  557. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h2.png +0 -0
  558. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stocks_locale.png +0 -0
  559. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/table_heatmap.png +0 -0
  560. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/table_heatmap.sg.json +0 -0
  561. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/circle_binned.vg.json +0 -0
  562. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/circle_binned.vg.pretty.json +0 -0
  563. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/seattle-weather.vg.json +0 -0
  564. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/seattle-weather.vg.pretty.json +0 -0
  565. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/stacked_bar_h.vg.json +0 -0
  566. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/stacked_bar_h.vg.pretty.json +0 -0
  567. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/circle_binned.vg.json +0 -0
  568. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/circle_binned.vg.pretty.json +0 -0
  569. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/seattle-weather.vg.json +0 -0
  570. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/seattle-weather.vg.pretty.json +0 -0
  571. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/stacked_bar_h.vg.json +0 -0
  572. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/stacked_bar_h.vg.pretty.json +0 -0
  573. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/float_font_size.vl.json +0 -0
  574. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/font_with_quotes.vl.json +0 -0
  575. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/geoScale.vl.json +0 -0
  576. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/gh_174.vl.json +0 -0
  577. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/line_with_log_scale.vl.json +0 -0
  578. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/long_legend_label.vl.json +0 -0
  579. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/long_text_lable.vl.json +0 -0
  580. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/lookup_urls.vl.json +0 -0
  581. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/maptile_background.vl.json +0 -0
  582. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/maptile_background_2.vl.json +0 -0
  583. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/no_text_in_font_metrics.vl.json +0 -0
  584. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/numeric_font_weight.vl.json +0 -0
  585. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/quakes_initial_selection.vl.json +0 -0
  586. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/remote_images.vl.json +0 -0
  587. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/seattle-weather.vl.json +0 -0
  588. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/stacked_bar_h.vl.json +0 -0
  589. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/stacked_bar_h2.vl.json +0 -0
  590. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/stocks_locale.vl.json +0 -0
  591. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/table_heatmap.vl.json +0 -0
  592. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/thirdparty_font.md +0 -0
  593. {vl_convert_python-2.0.0rc1 → vl_convert_python-2.0.0rc5}/vl-convert-rs/thirdparty_javascript.md +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.