vl-convert-python 2.0.0rc2__tar.gz → 2.0.0rc6__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 (498) hide show
  1. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/Cargo.lock +15 -8
  2. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/Cargo.toml +13 -0
  3. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/PKG-INFO +2 -2
  4. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/pyproject.toml +4 -2
  5. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/Cargo.toml +4 -4
  6. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/Cargo.toml +5 -5
  7. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/Cargo.toml +4 -4
  8. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/Cargo.toml +5 -8
  9. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/src/conversions.rs +48 -4
  10. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_asyncio.py +24 -4
  11. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_specs.py +47 -9
  12. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/vl_convert.pyi +21 -2
  13. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/Cargo.toml +15 -8
  14. vl_convert_python-2.0.0rc6/vl-convert-rs/LICENSE +11 -0
  15. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/build.rs +44 -10
  16. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/config.rs +1 -1
  17. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/fonts.rs +44 -11
  18. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/mod.rs +46 -16
  19. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/html.rs +43 -29
  20. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/module_loader/import_map.rs +12 -1
  21. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/test_specs.rs +38 -4
  22. vl_convert_python-2.0.0rc6/vl-convert-rs/tests/test_vl_version.rs +41 -0
  23. {vl_convert_python-2.0.0rc2/vl-convert-google-fonts → vl_convert_python-2.0.0rc6}/LICENSE +0 -0
  24. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/README.md +0 -0
  25. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/arc.rs +0 -0
  26. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/context/drawing.rs +0 -0
  27. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/context/image_ops.rs +0 -0
  28. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/context/mod.rs +0 -0
  29. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/context/path_ops.rs +0 -0
  30. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/context/text_rendering.rs +0 -0
  31. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/context/transform.rs +0 -0
  32. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/dom_matrix.rs +0 -0
  33. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/drawing_state.rs +0 -0
  34. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/error.rs +0 -0
  35. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/font_config.rs +0 -0
  36. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/font_parser.rs +0 -0
  37. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/geometry.rs +0 -0
  38. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/gradient.rs +0 -0
  39. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/lib.rs +0 -0
  40. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/path2d.rs +0 -0
  41. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/pattern.rs +0 -0
  42. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/pattern_cache.rs +0 -0
  43. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/style.rs +0 -0
  44. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/src/text.rs +0 -0
  45. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/basic_drawing.rs +0 -0
  46. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/clipping.rs +0 -0
  47. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/common.rs +0 -0
  48. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/fractional_coords.rs +0 -0
  49. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/gradients.rs +0 -0
  50. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/image_data.rs +0 -0
  51. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/image_smoothing.rs +0 -0
  52. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/main.rs +0 -0
  53. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/max_width_text.rs +0 -0
  54. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/path2d_features.rs +0 -0
  55. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/patterns.rs +0 -0
  56. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/put_image_data.rs +0 -0
  57. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/canvas_comparison/transform_timing.rs +0 -0
  58. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d/tests/integration_tests.rs +0 -0
  59. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/README.md +0 -0
  60. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/js/canvas_element_polyfill.js +0 -0
  61. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/js/canvas_polyfill.js +0 -0
  62. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/js/context_polyfill.js +0 -0
  63. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/js/image_polyfill.js +0 -0
  64. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/js/path2d_polyfill.js +0 -0
  65. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/lib.rs +0 -0
  66. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/ops/drawing.rs +0 -0
  67. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/ops/image_ops.rs +0 -0
  68. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/ops/mod.rs +0 -0
  69. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/ops/path_ops.rs +0 -0
  70. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/ops/state.rs +0 -0
  71. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/ops/text.rs +0 -0
  72. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/ops/transform.rs +0 -0
  73. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-canvas2d-deno/src/resource.rs +0 -0
  74. {vl_convert_python-2.0.0rc2/vl-convert-python → vl_convert_python-2.0.0rc6/vl-convert-google-fonts}/LICENSE +0 -0
  75. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/README.md +0 -0
  76. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/cache.rs +0 -0
  77. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/client.rs +0 -0
  78. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/config.rs +0 -0
  79. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/error.rs +0 -0
  80. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/fontdb_ext.rs +0 -0
  81. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/lib.rs +0 -0
  82. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/resolve.rs +0 -0
  83. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/src/types.rs +0 -0
  84. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-google-fonts/tests/load_google_fonts.rs +0 -0
  85. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/CLAUDE.md +0 -0
  86. {vl_convert_python-2.0.0rc2/vl-convert-rs → vl_convert_python-2.0.0rc6/vl-convert-python}/LICENSE +0 -0
  87. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/README.md +0 -0
  88. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/notebooks/convert_vegalite.ipynb +0 -0
  89. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/src/config.rs +0 -0
  90. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/src/fonts.rs +0 -0
  91. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/src/info.rs +0 -0
  92. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/src/lib.rs +0 -0
  93. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/src/utils.rs +0 -0
  94. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/.gitignore +0 -0
  95. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/conftest.py +0 -0
  96. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/circle_binned_bundle.png +0 -0
  97. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/circle_binned_cdn.png +0 -0
  98. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/google_fonts_bundle.png +0 -0
  99. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/google_fonts_cdn.png +0 -0
  100. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/html/.gitignore +0 -0
  101. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/local_font_bundle.png +0 -0
  102. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/pacifico_bundle.png +0 -0
  103. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_custom_scheme_bundle.png +0 -0
  104. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_custom_scheme_cdn.png +0 -0
  105. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_http_import_bundle.png +0 -0
  106. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_http_import_cdn.png +0 -0
  107. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_url_entry_bundle.png +0 -0
  108. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_url_entry_cdn.png +0 -0
  109. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_url_redirect_bundle.png +0 -0
  110. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/plugin_url_relative_imports_bundle.png +0 -0
  111. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/html-baselines/stacked_bar_bundle.png +0 -0
  112. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/html/.gitignore +0 -0
  113. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/svg/.gitignore +0 -0
  114. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/svg_google_fonts_bundle.png +0 -0
  115. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/svg_google_fonts_cdn.png +0 -0
  116. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/svg_local_font_bundle.png +0 -0
  117. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/svg_pacifico_bundle.png +0 -0
  118. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/svg_remote_images_bundle.png +0 -0
  119. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/svg-baselines/svg_remote_images_no_bundle.png +0 -0
  120. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_access_policy.py +0 -0
  121. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_get_local_tz.py +0 -0
  122. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_get_locales.py +0 -0
  123. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_html_rendering.py +0 -0
  124. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_per_call_opts.py +0 -0
  125. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_svg_rendering.py +0 -0
  126. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_themes.py +0 -0
  127. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_warnings.py +0 -0
  128. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/tests/test_workers.py +0 -0
  129. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/thirdparty_font.md +0 -0
  130. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/thirdparty_javascript.md +0 -0
  131. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-python/thirdparty_rust.yaml +0 -0
  132. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/CLAUDE.md +0 -0
  133. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/README.md +0 -0
  134. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/benches/scenegraph_scatter.rs +0 -0
  135. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/examples/conversion1.rs +0 -0
  136. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Bold.ttf +0 -0
  137. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/fonts/liberation-sans/LiberationSans-BoldItalic.ttf +0 -0
  138. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Italic.ttf +0 -0
  139. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Regular.ttf +0 -0
  140. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/fonts/liberation-sans/SIL Open Font License.txt +0 -0
  141. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-001.json +0 -0
  142. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-AE.json +0 -0
  143. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-BH.json +0 -0
  144. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-DJ.json +0 -0
  145. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-DZ.json +0 -0
  146. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-EG.json +0 -0
  147. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-EH.json +0 -0
  148. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-ER.json +0 -0
  149. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-IL.json +0 -0
  150. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-IQ.json +0 -0
  151. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-JO.json +0 -0
  152. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-KM.json +0 -0
  153. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-KW.json +0 -0
  154. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-LB.json +0 -0
  155. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-LY.json +0 -0
  156. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-MA.json +0 -0
  157. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-MR.json +0 -0
  158. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-OM.json +0 -0
  159. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-PS.json +0 -0
  160. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-QA.json +0 -0
  161. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-SA.json +0 -0
  162. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-SD.json +0 -0
  163. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-SO.json +0 -0
  164. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-SS.json +0 -0
  165. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-SY.json +0 -0
  166. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-TD.json +0 -0
  167. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-TN.json +0 -0
  168. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ar-YE.json +0 -0
  169. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ca-ES.json +0 -0
  170. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/cs-CZ.json +0 -0
  171. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/da-DK.json +0 -0
  172. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/de-CH.json +0 -0
  173. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/de-DE.json +0 -0
  174. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/en-CA.json +0 -0
  175. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/en-GB.json +0 -0
  176. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/en-IE.json +0 -0
  177. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/en-IN.json +0 -0
  178. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/en-US.json +0 -0
  179. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/es-BO.json +0 -0
  180. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/es-ES.json +0 -0
  181. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/es-MX.json +0 -0
  182. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/fi-FI.json +0 -0
  183. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/fr-CA.json +0 -0
  184. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/fr-FR.json +0 -0
  185. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/he-IL.json +0 -0
  186. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/hu-HU.json +0 -0
  187. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/it-IT.json +0 -0
  188. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ja-JP.json +0 -0
  189. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ko-KR.json +0 -0
  190. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/mk-MK.json +0 -0
  191. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/nl-NL.json +0 -0
  192. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/pl-PL.json +0 -0
  193. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/pt-BR.json +0 -0
  194. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/pt-PT.json +0 -0
  195. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/ru-RU.json +0 -0
  196. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/sl-SI.json +0 -0
  197. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/sv-SE.json +0 -0
  198. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/uk-UA.json +0 -0
  199. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/format/zh-CN.json +0 -0
  200. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/ar-EG.json +0 -0
  201. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/ar-SY.json +0 -0
  202. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/ca-ES.json +0 -0
  203. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/cs-CZ.json +0 -0
  204. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/da-DK.json +0 -0
  205. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/de-CH.json +0 -0
  206. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/de-DE.json +0 -0
  207. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/en-CA.json +0 -0
  208. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/en-GB.json +0 -0
  209. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/en-US.json +0 -0
  210. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/es-ES.json +0 -0
  211. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/es-MX.json +0 -0
  212. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/fa-IR.json +0 -0
  213. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/fi-FI.json +0 -0
  214. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/fr-CA.json +0 -0
  215. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/fr-FR.json +0 -0
  216. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/he-IL.json +0 -0
  217. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/hr-HR.json +0 -0
  218. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/hu-HU.json +0 -0
  219. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/it-IT.json +0 -0
  220. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/ja-JP.json +0 -0
  221. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/ko-KR.json +0 -0
  222. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/mk-MK.json +0 -0
  223. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/nb-NO.json +0 -0
  224. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/nl-BE.json +0 -0
  225. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/nl-NL.json +0 -0
  226. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/pl-PL.json +0 -0
  227. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/pt-BR.json +0 -0
  228. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/ru-RU.json +0 -0
  229. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/sv-SE.json +0 -0
  230. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/tr-TR.json +0 -0
  231. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/uk-UA.json +0 -0
  232. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/vi-VN.json +0 -0
  233. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/zh-CN.json +0 -0
  234. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/locales/time-format/zh-TW.json +0 -0
  235. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/inner/conversions.rs +0 -0
  236. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/inner/fonts.rs +0 -0
  237. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/inner/init.rs +0 -0
  238. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/inner/mod.rs +0 -0
  239. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/inner/rendering.rs +0 -0
  240. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/inner/runtime.rs +0 -0
  241. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/permissions.rs +0 -0
  242. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/plugin.rs +0 -0
  243. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/rendering.rs +0 -0
  244. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/transfer.rs +0 -0
  245. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/types.rs +0 -0
  246. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/value_or_string.rs +0 -0
  247. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/converter/worker_pool.rs +0 -0
  248. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/data_ops.rs +0 -0
  249. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/deno_emit/bundle_hook.rs +0 -0
  250. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/deno_emit/emit.rs +0 -0
  251. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/deno_emit/mod.rs +0 -0
  252. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/deno_emit/text.rs +0 -0
  253. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/deno_stubs.rs +0 -0
  254. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/extract/mod.rs +0 -0
  255. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/extract/scenegraph.rs +0 -0
  256. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/extract/svg.rs +0 -0
  257. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/extract/types.rs +0 -0
  258. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/extract/vega.rs +0 -0
  259. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/font_embed.rs +0 -0
  260. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/image_loading.rs +0 -0
  261. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/js/bootstrap.js +0 -0
  262. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/lib.rs +0 -0
  263. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/module_loader/mod.rs +0 -0
  264. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/svg_font.rs +0 -0
  265. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/src/text.rs +0 -0
  266. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/Caveat/Caveat-VariableFont_wght.ttf +0 -0
  267. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/Caveat/OFL.txt +0 -0
  268. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/Caveat/README.txt +0 -0
  269. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Bold.ttf +0 -0
  270. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Medium.ttf +0 -0
  271. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Regular.ttf +0 -0
  272. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-SemiBold.ttf +0 -0
  273. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-Bold.ttf +0 -0
  274. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-BoldItalic.ttf +0 -0
  275. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-Heavy.ttf +0 -0
  276. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-HeavyItalic.ttf +0 -0
  277. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-Light.ttf +0 -0
  278. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-LightItalic.ttf +0 -0
  279. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-Medium.ttf +0 -0
  280. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-MediumItalic.ttf +0 -0
  281. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-Regular.ttf +0 -0
  282. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-RegularItalic.ttf +0 -0
  283. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-SemiBold.ttf +0 -0
  284. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/Matter-SemiBoldItalic.ttf +0 -0
  285. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/demo.html +0 -0
  286. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/fonts/matter/stylesheet.css +0 -0
  287. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/locale/format/it-IT.json +0 -0
  288. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/locale/time-format/it-IT.json +0 -0
  289. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/expected/label_movies_scatter.png +0 -0
  290. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/expected/label_scatter_plot.png +0 -0
  291. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/expected/label_transform_test.png +0 -0
  292. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/expected/plugin_custom_scheme.png +0 -0
  293. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/label_movies_scatter.vg.json +0 -0
  294. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/label_scatter_plot.vg.json +0 -0
  295. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/label_transform_test.vg.json +0 -0
  296. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/specs/plugin_custom_scheme.vg.json +0 -0
  297. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/svg-specs/expected/svg_auto_google_fonts.png +0 -0
  298. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/svg-specs/expected/svg_auto_google_fonts_pacifico.png +0 -0
  299. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/test_config.rs +0 -0
  300. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/test_heap_limit.rs +0 -0
  301. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/test_plugins.rs +0 -0
  302. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/test_themes.rs +0 -0
  303. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/test_utils.rs +0 -0
  304. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/bar_chart_trellis_compact.vl.json +0 -0
  305. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/circle_binned.vl.json +0 -0
  306. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/circle_binned_base_url.vl.json +0 -0
  307. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/custom_projection.vl.json +0 -0
  308. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.json +0 -0
  309. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.pretty.json +0 -0
  310. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.json +0 -0
  311. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.pretty.json +0 -0
  312. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.json +0 -0
  313. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.pretty.json +0 -0
  314. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_15/circle_binned.vg.json +0 -0
  315. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_15/circle_binned.vg.pretty.json +0 -0
  316. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_15/seattle-weather.vg.json +0 -0
  317. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_15/seattle-weather.vg.pretty.json +0 -0
  318. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_15/stacked_bar_h.vg.json +0 -0
  319. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_15/stacked_bar_h.vg.pretty.json +0 -0
  320. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_16/circle_binned.vg.json +0 -0
  321. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_16/circle_binned.vg.pretty.json +0 -0
  322. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_16/seattle-weather.vg.json +0 -0
  323. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_16/seattle-weather.vg.pretty.json +0 -0
  324. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_16/stacked_bar_h.vg.json +0 -0
  325. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_16/stacked_bar_h.vg.pretty.json +0 -0
  326. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_17/circle_binned.vg.json +0 -0
  327. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_17/circle_binned.vg.pretty.json +0 -0
  328. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_17/seattle-weather.vg.json +0 -0
  329. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_17/seattle-weather.vg.pretty.json +0 -0
  330. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_17/stacked_bar_h.vg.json +0 -0
  331. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_17/stacked_bar_h.vg.pretty.json +0 -0
  332. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_20/circle_binned.vg.json +0 -0
  333. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_20/circle_binned.vg.pretty.json +0 -0
  334. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_20/seattle-weather.vg.json +0 -0
  335. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_20/seattle-weather.vg.pretty.json +0 -0
  336. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_20/stacked_bar_h.vg.json +0 -0
  337. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_20/stacked_bar_h.vg.pretty.json +0 -0
  338. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_21/circle_binned.vg.json +0 -0
  339. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_21/circle_binned.vg.pretty.json +0 -0
  340. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_21/seattle-weather.vg.json +0 -0
  341. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_21/seattle-weather.vg.pretty.json +0 -0
  342. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_21/stacked_bar_h.vg.json +0 -0
  343. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_21/stacked_bar_h.vg.pretty.json +0 -0
  344. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact-excel.png +0 -0
  345. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.png +0 -0
  346. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.svg +0 -0
  347. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned-dark.png +0 -0
  348. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.png +0 -0
  349. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.svg +0 -0
  350. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.json +0 -0
  351. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.pretty.json +0 -0
  352. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.png +0 -0
  353. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.svg +0 -0
  354. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/custom_projection.png +0 -0
  355. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.png +0 -0
  356. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.svg +0 -0
  357. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/font_with_quotes.png +0 -0
  358. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/geoScale.png +0 -0
  359. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/geoScale.sg.json +0 -0
  360. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/gh_174.png +0 -0
  361. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/google_fonts.png +0 -0
  362. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale-fivethirtyeight.png +0 -0
  363. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.png +0 -0
  364. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.svg +0 -0
  365. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/long_legend_label.png +0 -0
  366. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/long_text_lable.png +0 -0
  367. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/lookup_urls.png +0 -0
  368. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background.png +0 -0
  369. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background_2.png +0 -0
  370. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.png +0 -0
  371. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.sg.json +0 -0
  372. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.svg +0 -0
  373. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/numeric_font_weight.svg +0 -0
  374. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/quakes_initial_selection.png +0 -0
  375. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/remote_images.png +0 -0
  376. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/seattle-weather.vg.json +0 -0
  377. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/seattle-weather.vg.pretty.json +0 -0
  378. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h-vox.png +0 -0
  379. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.png +0 -0
  380. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.svg +0 -0
  381. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.json +0 -0
  382. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.pretty.json +0 -0
  383. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h2.png +0 -0
  384. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/stocks_locale.png +0 -0
  385. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/table_heatmap.png +0 -0
  386. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v5_8/table_heatmap.sg.json +0 -0
  387. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_1/circle_binned.vg.json +0 -0
  388. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_1/circle_binned.vg.pretty.json +0 -0
  389. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_1/seattle-weather.vg.json +0 -0
  390. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_1/seattle-weather.vg.pretty.json +0 -0
  391. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_1/stacked_bar_h.vg.json +0 -0
  392. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_1/stacked_bar_h.vg.pretty.json +0 -0
  393. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_4/circle_binned.vg.json +0 -0
  394. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_4/circle_binned.vg.pretty.json +0 -0
  395. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_4/seattle-weather.vg.json +0 -0
  396. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_4/seattle-weather.vg.pretty.json +0 -0
  397. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_4/stacked_bar_h.vg.json +0 -0
  398. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/expected/v6_4/stacked_bar_h.vg.pretty.json +0 -0
  399. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/float_font_size.vl.json +0 -0
  400. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/font_with_quotes.vl.json +0 -0
  401. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/geoScale.vl.json +0 -0
  402. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/gh_174.vl.json +0 -0
  403. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/google_fonts.vl.json +0 -0
  404. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/line_with_log_scale.vl.json +0 -0
  405. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/local_font.vl.json +0 -0
  406. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/long_legend_label.vl.json +0 -0
  407. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/long_text_lable.vl.json +0 -0
  408. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/lookup_urls.vl.json +0 -0
  409. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/maptile_background.vl.json +0 -0
  410. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/maptile_background_2.vl.json +0 -0
  411. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/no_text_in_font_metrics.vl.json +0 -0
  412. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/numeric_font_weight.vl.json +0 -0
  413. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/pacifico_title.vl.json +0 -0
  414. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/quakes_initial_selection.vl.json +0 -0
  415. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/remote_images.vl.json +0 -0
  416. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/seattle-weather.vl.json +0 -0
  417. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/stacked_bar_h.vl.json +0 -0
  418. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/stacked_bar_h2.vl.json +0 -0
  419. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/stocks_locale.vl.json +0 -0
  420. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/tests/vl-specs/table_heatmap.vl.json +0 -0
  421. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/thirdparty_font.md +0 -0
  422. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/thirdparty_javascript.md +0 -0
  423. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/thirdparty_rust.yaml +0 -0
  424. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#fast-json-stable-str_a4987/#+esm_3b53f.js +0 -0
  425. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#json-stringify-prett_2eaac/#+esm_3b53f.js +0 -0
  426. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/@msgpack/msgpack@3.1.3/#+esm_3b53f.js +0 -0
  427. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/clone@2.1.2/#+esm_3b53f.js +0 -0
  428. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-array@3.2.4/#+esm_3b53f.js +0 -0
  429. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-color@3.1.0/#+esm_3b53f.js +0 -0
  430. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-delaunay@6.0.4/#+esm_3b53f.js +0 -0
  431. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dispatch@3.0.1/#+esm_3b53f.js +0 -0
  432. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dsv@3.0.1/#+esm_3b53f.js +0 -0
  433. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-ease@3.0.1/#+esm_3b53f.js +0 -0
  434. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-force@3.0.0/#+esm_3b53f.js +0 -0
  435. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-format@3.1.2/#+esm_3b53f.js +0 -0
  436. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo-projection@4.0.0/#+esm_3b53f.js +0 -0
  437. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo@3.1.1/#+esm_3b53f.js +0 -0
  438. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-hierarchy@3.1.2/#+esm_3b53f.js +0 -0
  439. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-interpolate@3.0.1/#+esm_3b53f.js +0 -0
  440. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-path@3.1.0/#+esm_3b53f.js +0 -0
  441. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-quadtree@3.0.1/#+esm_3b53f.js +0 -0
  442. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale-chromatic@3.1.0/#+esm_3b53f.js +0 -0
  443. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale@4.0.2/#+esm_3b53f.js +0 -0
  444. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-shape@3.2.0/#+esm_3b53f.js +0 -0
  445. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time-format@4.1.0/#+esm_3b53f.js +0 -0
  446. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time@3.1.0/#+esm_3b53f.js +0 -0
  447. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-timer@3.0.1/#+esm_3b53f.js +0 -0
  448. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/delaunator@5.0.0/#+esm_3b53f.js +0 -0
  449. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/fast-deep-equal@3.1.3/#+esm_3b53f.js +0 -0
  450. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/internmap@2.0.3/#+esm_3b53f.js +0 -0
  451. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/lodash.debounce@4.0.8/#+esm_3b53f.js +0 -0
  452. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/robust-predicates@3.0.0/#+esm_3b53f.js +0 -0
  453. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/topojson-client@3.1.0/#+esm_3b53f.js +0 -0
  454. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-canvas@2.0.0/#+esm_3b53f.js +0 -0
  455. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-crossfilter@5.1.3/#+esm_3b53f.js +0 -0
  456. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-dataflow@6.1.3/#+esm_3b53f.js +0 -0
  457. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-embed@7.2.0/#+esm_3b53f.js +0 -0
  458. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-encode@5.2.2/#+esm_3b53f.js +0 -0
  459. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-event-selector@4.0.0/#+esm_3b53f.js +0 -0
  460. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-expression@6.2.2/#+esm_3b53f.js +0 -0
  461. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-force@5.1.3/#+esm_3b53f.js +0 -0
  462. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-format@2.1.3/#+esm_3b53f.js +0 -0
  463. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-functions@6.2.0/#+esm_3b53f.js +0 -0
  464. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-geo@5.1.3/#+esm_3b53f.js +0 -0
  465. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-hierarchy@5.1.3/#+esm_3b53f.js +0 -0
  466. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-interpreter@2.3.2/#+esm_3b53f.js +0 -0
  467. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-label@2.1.3/#+esm_3b53f.js +0 -0
  468. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.14.1/#+esm_3b53f.js +0 -0
  469. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.15.1/#+esm_3b53f.js +0 -0
  470. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.16.3/#+esm_3b53f.js +0 -0
  471. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.17.0/#+esm_3b53f.js +0 -0
  472. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.20.1/#+esm_3b53f.js +0 -0
  473. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.21.0/#+esm_3b53f.js +0 -0
  474. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.8.0/#+esm_3b53f.js +0 -0
  475. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.1.0/#+esm_3b53f.js +0 -0
  476. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.4.3/#+esm_3b53f.js +0 -0
  477. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-loader@5.1.3/#+esm_3b53f.js +0 -0
  478. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-parser@7.1.3/#+esm_3b53f.js +0 -0
  479. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-projection@2.1.3/#+esm_3b53f.js +0 -0
  480. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-regression@2.1.3/#+esm_3b53f.js +0 -0
  481. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-runtime@7.1.3/#+esm_3b53f.js +0 -0
  482. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scale@8.1.3/#+esm_3b53f.js +0 -0
  483. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scenegraph@5.3.0/#+esm_3b53f.js +0 -0
  484. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-schema-url-parser@3.0.2/#+esm_3b53f.js +0 -0
  485. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-selections@6.1.5/#+esm_3b53f.js +0 -0
  486. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-statistics@2.0.0/#+esm_3b53f.js +0 -0
  487. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-themes@3.0.0/#+esm_3b53f.js +0 -0
  488. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-time@3.3.0/#+esm_3b53f.js +0 -0
  489. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-tooltip@1.1.0/#+esm_3b53f.js +0 -0
  490. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-transforms@5.2.2/#+esm_3b53f.js +0 -0
  491. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-util@2.1.3/#+esm_3b53f.js +0 -0
  492. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view-transforms@5.2.2/#+esm_3b53f.js +0 -0
  493. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view@6.2.0/#+esm_3b53f.js +0 -0
  494. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-voronoi@5.1.3/#+esm_3b53f.js +0 -0
  495. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-wordcloud@5.1.3/#+esm_3b53f.js +0 -0
  496. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega@6.4.0/#+esm_3b53f.js +0 -0
  497. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor/manifest.json +0 -0
  498. {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc6}/vl-convert-rs/vendor_imports.js +0 -0
@@ -10753,9 +10753,16 @@ dependencies = [
10753
10753
  "serde_json",
10754
10754
  "url",
10755
10755
  "utoipa",
10756
+ "utoipa-swagger-ui-vendored",
10756
10757
  "zip 3.0.0",
10757
10758
  ]
10758
10759
 
10760
+ [[package]]
10761
+ name = "utoipa-swagger-ui-vendored"
10762
+ version = "0.1.2"
10763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
10764
+ checksum = "e2eebbbfe4093922c2b6734d7c679ebfebd704a0d7e56dfcb0d05818ce28977d"
10765
+
10759
10766
  [[package]]
10760
10767
  name = "uuid"
10761
10768
  version = "1.26.0"
@@ -10846,7 +10853,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
10846
10853
 
10847
10854
  [[package]]
10848
10855
  name = "vl-convert"
10849
- version = "2.0.0-rc2"
10856
+ version = "2.0.0-rc6"
10850
10857
  dependencies = [
10851
10858
  "assert_cmd",
10852
10859
  "bytes",
@@ -10875,7 +10882,7 @@ dependencies = [
10875
10882
 
10876
10883
  [[package]]
10877
10884
  name = "vl-convert-canvas2d"
10878
- version = "2.0.0-rc2"
10885
+ version = "2.0.0-rc6"
10879
10886
  dependencies = [
10880
10887
  "cosmic-text",
10881
10888
  "csscolorparser",
@@ -10894,7 +10901,7 @@ dependencies = [
10894
10901
 
10895
10902
  [[package]]
10896
10903
  name = "vl-convert-canvas2d-deno"
10897
- version = "2.0.0-rc2"
10904
+ version = "2.0.0-rc6"
10898
10905
  dependencies = [
10899
10906
  "csscolorparser",
10900
10907
  "deno_core",
@@ -10910,7 +10917,7 @@ dependencies = [
10910
10917
 
10911
10918
  [[package]]
10912
10919
  name = "vl-convert-google-fonts"
10913
- version = "2.0.0-rc2"
10920
+ version = "2.0.0-rc6"
10914
10921
  dependencies = [
10915
10922
  "backon",
10916
10923
  "dashmap 6.2.1",
@@ -10929,7 +10936,7 @@ dependencies = [
10929
10936
 
10930
10937
  [[package]]
10931
10938
  name = "vl-convert-python"
10932
- version = "2.0.0-rc2"
10939
+ version = "2.0.0-rc6"
10933
10940
  dependencies = [
10934
10941
  "futures",
10935
10942
  "lazy_static",
@@ -10943,7 +10950,7 @@ dependencies = [
10943
10950
 
10944
10951
  [[package]]
10945
10952
  name = "vl-convert-rs"
10946
- version = "2.0.0-rc2"
10953
+ version = "2.0.0-rc6"
10947
10954
  dependencies = [
10948
10955
  "arc-swap",
10949
10956
  "backon",
@@ -10997,7 +11004,7 @@ dependencies = [
10997
11004
 
10998
11005
  [[package]]
10999
11006
  name = "vl-convert-server"
11000
- version = "2.0.0-rc2"
11007
+ version = "2.0.0-rc6"
11001
11008
  dependencies = [
11002
11009
  "arc-swap",
11003
11010
  "axum",
@@ -11034,7 +11041,7 @@ dependencies = [
11034
11041
 
11035
11042
  [[package]]
11036
11043
  name = "vl-convert-vendor"
11037
- version = "2.0.0-rc2"
11044
+ version = "0.0.0"
11038
11045
  dependencies = [
11039
11046
  "anyhow",
11040
11047
  "dircpy",
@@ -3,6 +3,12 @@ resolver = "2" # Needed for proper wgpu compilation
3
3
 
4
4
  members = ["vl-convert-rs", "vl-convert-python", "vl-convert-canvas2d", "vl-convert-canvas2d-deno", "vl-convert-google-fonts"]
5
5
 
6
+ [workspace.package]
7
+ version = "2.0.0-rc6"
8
+ edition = "2021"
9
+ license = "BSD-3-Clause"
10
+ repository = "https://github.com/vega/vl-convert"
11
+
6
12
  [profile.release]
7
13
  strip = true # Automatically strip symbols from the binary
8
14
  opt-level = "z" # Optimize for size
@@ -16,6 +22,13 @@ assert_cmd = "2.0"
16
22
  backon = { version = "1", default-features = false, features = ["tokio-sleep", "std", "std-blocking-sleep"] }
17
23
  clap = { version = "4.5", features = ["derive", "env"] }
18
24
 
25
+ # Internal packages are released in lockstep.
26
+ vl-convert-canvas2d = { path = "vl-convert-canvas2d", version = "=2.0.0-rc6" }
27
+ vl-convert-canvas2d-deno = { path = "vl-convert-canvas2d-deno", version = "=2.0.0-rc6" }
28
+ vl-convert-google-fonts = { path = "vl-convert-google-fonts", version = "=2.0.0-rc6" }
29
+ vl-convert-rs = { path = "vl-convert-rs", version = "=2.0.0-rc6" }
30
+ vl-convert-server = { path = "vl-convert-server", version = "=2.0.0-rc6" }
31
+
19
32
  # Deno dependencies - versions correspond to Deno v2.9.6
20
33
  deno_runtime = "0.266.0"
21
34
  node_resolver = "0.96.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vl-convert-python
3
- Version: 2.0.0rc2
3
+ Version: 2.0.0rc6
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Requires-Dist: pytest>=8.3,<9 ; extra == 'test'
@@ -11,7 +11,7 @@ Provides-Extra: test
11
11
  License-File: LICENSE
12
12
  Summary: Convert Vega-Lite chart specifications to SVG, PNG, or Vega
13
13
  Home-Page: https://github.com/jonmmease/vl-convert
14
- License: BSD-3-Clause
14
+ License-Expression: BSD-3-Clause
15
15
  Requires-Python: >=3.9
16
16
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
17
17
 
@@ -1,10 +1,12 @@
1
1
  [build-system]
2
- requires = ["maturin>=1.1.0,<2"]
2
+ requires = ["maturin>=1.9.3,<2"]
3
3
  build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "vl-convert-python"
7
- dynamic = ["version", "readme", "license"]
7
+ dynamic = ["version", "readme"]
8
+ license = "BSD-3-Clause"
9
+ license-files = ["LICENSE"]
8
10
  requires-python = ">=3.9"
9
11
  description = "Convert Vega-Lite chart specifications to SVG, PNG, or Vega"
10
12
  classifiers = [
@@ -1,10 +1,10 @@
1
1
  [package]
2
2
  name = "vl-convert-canvas2d"
3
- version = "2.0.0-rc2"
4
- edition = "2021"
3
+ version.workspace = true
4
+ edition.workspace = true
5
5
  description = "Pure Rust Canvas 2D API implementation using tiny-skia and cosmic-text"
6
- license = "BSD-3-Clause"
7
- repository = "https://github.com/vega/vl-convert"
6
+ license.workspace = true
7
+ repository.workspace = true
8
8
  readme = "README.md"
9
9
  keywords = ["canvas", "2d", "graphics", "tiny-skia"]
10
10
 
@@ -1,10 +1,10 @@
1
1
  [package]
2
2
  name = "vl-convert-canvas2d-deno"
3
- version = "2.0.0-rc2"
4
- edition = "2021"
3
+ version.workspace = true
4
+ edition.workspace = true
5
5
  description = "Deno extension for Canvas 2D API wrapping vl-convert-canvas2d"
6
- license = "BSD-3-Clause"
7
- repository = "https://github.com/vega/vl-convert"
6
+ license.workspace = true
7
+ repository.workspace = true
8
8
  readme = "README.md"
9
9
  keywords = ["canvas", "2d", "deno", "graphics"]
10
10
 
@@ -18,7 +18,7 @@ deno_core = { workspace = true }
18
18
  deno_error = { workspace = true }
19
19
 
20
20
  # Canvas 2D implementation
21
- vl-convert-canvas2d = { path = "../vl-convert-canvas2d", version = "2.0.0-rc1" }
21
+ vl-convert-canvas2d = { workspace = true }
22
22
 
23
23
  # For gradient color parsing
24
24
  csscolorparser = "0.8.4"
@@ -1,12 +1,12 @@
1
1
  [package]
2
2
  name = "vl-convert-google-fonts"
3
- version = "2.0.0-rc2"
4
- edition = "2021"
3
+ version.workspace = true
4
+ edition.workspace = true
5
5
  description = "Google Fonts downloading and caching"
6
- license = "BSD-3-Clause"
6
+ license.workspace = true
7
7
  readme = "README.md"
8
8
  homepage = "https://github.com/vega/vl-convert"
9
- repository = "https://github.com/vega/vl-convert"
9
+ repository.workspace = true
10
10
  keywords = ["Fonts", "Google-Fonts"]
11
11
 
12
12
  [features]
@@ -1,22 +1,19 @@
1
1
  [package]
2
2
  name = "vl-convert-python"
3
- version = "2.0.0-rc2"
4
- edition = "2021"
5
- license = "BSD-3-Clause"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
6
  readme = "README.md"
7
7
  homepage = "https://github.com/jonmmease/vl-convert"
8
- repository = "https://github.com/jonmmease/vl-convert"
8
+ repository.workspace = true
9
9
  publish = false
10
10
 
11
- [package.metadata.release]
12
- release = false
13
-
14
11
  [lib]
15
12
  name = "vl_convert"
16
13
  crate-type = ["cdylib"]
17
14
 
18
15
  [dependencies]
19
- vl-convert-rs = { path = "../vl-convert-rs", version = "2.0.0-rc1" }
16
+ vl-convert-rs = { workspace = true }
20
17
  pyo3 = { workspace = true }
21
18
  lazy_static = { workspace = true }
22
19
  futures = { workspace = true }
@@ -16,6 +16,17 @@ use vl_convert_rs::converter::{
16
16
  };
17
17
  use vl_convert_rs::module_loader::import_map::VlVersion;
18
18
 
19
+ fn validate_pdf_scale(scale: Option<f64>) -> PyResult<()> {
20
+ if let Some(scale) = scale {
21
+ if scale != 1.0 {
22
+ return Err(PyValueError::new_err(
23
+ "The scale argument must be 1 for PDF output.",
24
+ ));
25
+ }
26
+ }
27
+ Ok(())
28
+ }
29
+
19
30
  /// Convert a Vega-Lite spec to a Vega spec using a particular
20
31
  /// version of the Vega-Lite JavaScript library.
21
32
  ///
@@ -830,6 +841,11 @@ pub fn vegalite_to_jpeg(
830
841
  ///
831
842
  /// Args:
832
843
  /// vg_spec (str | dict): Vega JSON specification string or dict
844
+ /// scale (float):
845
+ /// .. deprecated:: 2.0.0
846
+ /// Retained only for backward compatibility with vl-convert 1.x.
847
+ /// The parameter has no effect on PDF output. The only non-None
848
+ /// value accepted is 1.0. Any other numeric value raises ValueError.
833
849
  /// format_locale (str | dict): d3-format locale name or dictionary
834
850
  /// time_format_locale (str | dict): d3-time-format locale name or dictionary
835
851
  /// vega_plugin (str): Per-request Vega plugin (inline ESM string or URL)
@@ -844,6 +860,7 @@ pub fn vegalite_to_jpeg(
844
860
  #[pyo3(signature = (
845
861
  vg_spec,
846
862
  *,
863
+ scale=None,
847
864
  format_locale=None,
848
865
  time_format_locale=None,
849
866
  vega_plugin=None,
@@ -855,6 +872,7 @@ pub fn vegalite_to_jpeg(
855
872
  ))]
856
873
  pub fn vega_to_pdf(
857
874
  vg_spec: Py<PyAny>,
875
+ scale: Option<f64>,
858
876
  format_locale: Option<Py<PyAny>>,
859
877
  time_format_locale: Option<Py<PyAny>>,
860
878
  vega_plugin: Option<String>,
@@ -864,6 +882,7 @@ pub fn vega_to_pdf(
864
882
  width: Option<f32>,
865
883
  height: Option<f32>,
866
884
  ) -> PyResult<Py<PyAny>> {
885
+ validate_pdf_scale(scale)?;
867
886
  let vg_spec = parse_json_spec(vg_spec)?;
868
887
  let format_locale = parse_option_format_locale(format_locale)?;
869
888
  let time_format_locale = parse_option_time_format_locale(time_format_locale)?;
@@ -903,6 +922,11 @@ pub fn vega_to_pdf(
903
922
  /// vl_spec (str | dict): Vega-Lite JSON specification string or dict
904
923
  /// vl_version (str): Vega-Lite library version string (e.g. 'v5.15')
905
924
  /// (default to latest)
925
+ /// scale (float):
926
+ /// .. deprecated:: 2.0.0
927
+ /// Retained only for backward compatibility with vl-convert 1.x.
928
+ /// The parameter has no effect on PDF output. The only non-None
929
+ /// value accepted is 1.0. Any other numeric value raises ValueError.
906
930
  /// config (dict | None): Chart configuration object to apply during conversion
907
931
  /// theme (str | None): Named theme (e.g. "dark") to apply during conversion
908
932
  /// format_locale (str | dict): d3-format locale name or dictionary
@@ -919,6 +943,7 @@ pub fn vega_to_pdf(
919
943
  vl_spec,
920
944
  *,
921
945
  vl_version=None,
946
+ scale=None,
922
947
  config=None,
923
948
  theme=None,
924
949
  format_locale=None,
@@ -932,6 +957,7 @@ pub fn vega_to_pdf(
932
957
  pub fn vegalite_to_pdf(
933
958
  vl_spec: Py<PyAny>,
934
959
  vl_version: Option<&str>,
960
+ scale: Option<f64>,
935
961
  config: Option<Py<PyAny>>,
936
962
  theme: Option<String>,
937
963
  format_locale: Option<Py<PyAny>>,
@@ -942,6 +968,7 @@ pub fn vegalite_to_pdf(
942
968
  width: Option<f32>,
943
969
  height: Option<f32>,
944
970
  ) -> PyResult<Py<PyAny>> {
971
+ validate_pdf_scale(scale)?;
945
972
  let vl_version = if let Some(vl_version) = vl_version {
946
973
  VlVersion::from_str(vl_version)?
947
974
  } else {
@@ -1238,11 +1265,17 @@ pub fn svg_to_jpeg(svg: &str, scale: Option<f32>, quality: Option<u8>) -> PyResu
1238
1265
  ///
1239
1266
  /// Args:
1240
1267
  /// svg (str): SVG image string
1268
+ /// scale (float):
1269
+ /// .. deprecated:: 2.0.0
1270
+ /// Retained only for backward compatibility with vl-convert 1.x.
1271
+ /// The parameter has no effect on PDF output. The only non-None
1272
+ /// value accepted is 1.0. Any other numeric value raises ValueError.
1241
1273
  /// Returns:
1242
1274
  /// bytes: PDF document data
1243
1275
  #[pyfunction]
1244
- #[pyo3(signature = (svg))]
1245
- pub fn svg_to_pdf(svg: &str) -> PyResult<Py<PyAny>> {
1276
+ #[pyo3(signature = (svg, *, scale=None))]
1277
+ pub fn svg_to_pdf(svg: &str, scale: Option<f64>) -> PyResult<Py<PyAny>> {
1278
+ validate_pdf_scale(scale)?;
1246
1279
  let svg = svg.to_string();
1247
1280
  let pdf_data = run_converter_future(move |converter| async move {
1248
1281
  converter
@@ -1908,6 +1941,7 @@ pub fn vegalite_to_jpeg_asyncio<'py>(
1908
1941
  #[pyo3(signature = (
1909
1942
  vg_spec,
1910
1943
  *,
1944
+ scale=None,
1911
1945
  format_locale=None,
1912
1946
  time_format_locale=None,
1913
1947
  vega_plugin=None,
@@ -1920,6 +1954,7 @@ pub fn vegalite_to_jpeg_asyncio<'py>(
1920
1954
  pub fn vega_to_pdf_asyncio<'py>(
1921
1955
  py: Python<'py>,
1922
1956
  vg_spec: Py<PyAny>,
1957
+ scale: Option<f64>,
1923
1958
  format_locale: Option<Py<PyAny>>,
1924
1959
  time_format_locale: Option<Py<PyAny>>,
1925
1960
  vega_plugin: Option<String>,
@@ -1929,6 +1964,7 @@ pub fn vega_to_pdf_asyncio<'py>(
1929
1964
  width: Option<f32>,
1930
1965
  height: Option<f32>,
1931
1966
  ) -> PyResult<Bound<'py, PyAny>> {
1967
+ validate_pdf_scale(scale)?;
1932
1968
  let vg_spec = parse_json_spec(vg_spec)?;
1933
1969
  let format_locale = parse_option_format_locale(format_locale)?;
1934
1970
  let time_format_locale = parse_option_time_format_locale(time_format_locale)?;
@@ -1965,6 +2001,7 @@ pub fn vega_to_pdf_asyncio<'py>(
1965
2001
  vl_spec,
1966
2002
  *,
1967
2003
  vl_version=None,
2004
+ scale=None,
1968
2005
  config=None,
1969
2006
  theme=None,
1970
2007
  format_locale=None,
@@ -1979,6 +2016,7 @@ pub fn vegalite_to_pdf_asyncio<'py>(
1979
2016
  py: Python<'py>,
1980
2017
  vl_spec: Py<PyAny>,
1981
2018
  vl_version: Option<&str>,
2019
+ scale: Option<f64>,
1982
2020
  config: Option<Py<PyAny>>,
1983
2021
  theme: Option<String>,
1984
2022
  format_locale: Option<Py<PyAny>>,
@@ -1989,6 +2027,7 @@ pub fn vegalite_to_pdf_asyncio<'py>(
1989
2027
  width: Option<f32>,
1990
2028
  height: Option<f32>,
1991
2029
  ) -> PyResult<Bound<'py, PyAny>> {
2030
+ validate_pdf_scale(scale)?;
1992
2031
  let vl_version = if let Some(vl_version) = vl_version {
1993
2032
  VlVersion::from_str(vl_version)?
1994
2033
  } else {
@@ -2281,8 +2320,13 @@ pub fn svg_to_jpeg_asyncio<'py>(
2281
2320
 
2282
2321
  #[doc = async_variant_doc!("svg_to_pdf")]
2283
2322
  #[pyfunction(name = "svg_to_pdf")]
2284
- #[pyo3(signature = (svg))]
2285
- pub fn svg_to_pdf_asyncio<'py>(py: Python<'py>, svg: &str) -> PyResult<Bound<'py, PyAny>> {
2323
+ #[pyo3(signature = (svg, *, scale=None))]
2324
+ pub fn svg_to_pdf_asyncio<'py>(
2325
+ py: Python<'py>,
2326
+ svg: &str,
2327
+ scale: Option<f64>,
2328
+ ) -> PyResult<Bound<'py, PyAny>> {
2329
+ validate_pdf_scale(scale)?;
2286
2330
  let svg = svg.to_string();
2287
2331
  run_converter_future_async(
2288
2332
  py,
@@ -1,4 +1,5 @@
1
1
  import asyncio
2
+ import sys
2
3
 
3
4
  import pytest
4
5
  import vl_convert as vlc
@@ -93,16 +94,35 @@ def test_asyncio_smoke_and_sync_parity_shapes():
93
94
  run(scenario())
94
95
 
95
96
 
96
- def test_asyncio_pdf_rejects_scale_keyword():
97
+ @pytest.mark.skipif(
98
+ sys.platform.startswith("win"), reason="PDF tests not supported on windows"
99
+ )
100
+ def test_asyncio_pdf_accepts_scale_one():
97
101
  async def scenario():
98
102
  vega = await vlca.vegalite_to_vega(SIMPLE_VL_SPEC, vl_version="v5_16")
99
103
  svg = await vlca.vegalite_to_svg(SIMPLE_VL_SPEC, vl_version="v5_16")
100
104
 
101
- with pytest.raises(TypeError):
105
+ assert (await vlca.vega_to_pdf(vega, scale=1)).startswith(b"%PDF")
106
+ assert (
107
+ await vlca.vegalite_to_pdf(
108
+ SIMPLE_VL_SPEC, vl_version="v5_16", scale=1
109
+ )
110
+ ).startswith(b"%PDF")
111
+ assert (await vlca.svg_to_pdf(svg, scale=1)).startswith(b"%PDF")
112
+
113
+ run(scenario())
114
+
115
+
116
+ def test_asyncio_pdf_rejects_scale_other_than_one():
117
+ async def scenario():
118
+ vega = await vlca.vegalite_to_vega(SIMPLE_VL_SPEC, vl_version="v5_16")
119
+ svg = await vlca.vegalite_to_svg(SIMPLE_VL_SPEC, vl_version="v5_16")
120
+
121
+ with pytest.raises(ValueError, match="scale argument must be 1"):
102
122
  await vlca.vega_to_pdf(vega, scale=2)
103
- with pytest.raises(TypeError):
123
+ with pytest.raises(ValueError, match="scale argument must be 1"):
104
124
  await vlca.vegalite_to_pdf(SIMPLE_VL_SPEC, vl_version="v5_16", scale=2)
105
- with pytest.raises(TypeError):
125
+ with pytest.raises(ValueError, match="scale argument must be 1"):
106
126
  await vlca.svg_to_pdf(svg, scale=2)
107
127
 
108
128
  run(scenario())
@@ -262,8 +262,11 @@ def test_png(name, scale, as_dict):
262
262
  check_png(png, expected_png, tol=tol, name=f"png_vegalite_{name}")
263
263
 
264
264
 
265
- def test_png_google_fonts():
266
- vlc.configure(google_fonts=[{"family": "Bangers"}, {"family": "Lugrasimo"}])
265
+ def test_configured_google_fonts():
266
+ vlc.configure(
267
+ google_fonts=[{"family": "Bangers"}, {"family": "Lugrasimo"}],
268
+ missing_fonts="error",
269
+ )
267
270
 
268
271
  vl_version = "v5_8"
269
272
  vl_spec = load_vl_spec("google_fonts")
@@ -276,6 +279,13 @@ def test_png_google_fonts():
276
279
  png = vlc.vegalite_to_png(vl_spec, vl_version=vl_version, scale=2)
277
280
  check_png(png, expected_png, name="png_vegalite_google_fonts")
278
281
 
282
+ html = vlc.vegalite_to_html(vl_spec, vl_version=vl_version, bundle=False)
283
+
284
+ assert (
285
+ '<link rel="stylesheet" '
286
+ 'href="https://fonts.googleapis.com/css2?family=Bangers:' in html
287
+ )
288
+
279
289
 
280
290
  @pytest.mark.parametrize(
281
291
  "name,scale,theme", [("circle_binned", 1.0, "dark"), ("stacked_bar_h", 2.0, "vox")]
@@ -365,18 +375,46 @@ def test_pdf(name, tol, as_dict):
365
375
  check_png(png, expected_png, tol=tol, name=f"pdf_vegalite_{name}")
366
376
 
367
377
 
368
- def test_pdf_rejects_scale_keyword():
378
+ @pytest.mark.skipif(
379
+ sys.platform.startswith("win"), reason="PDF tests not supported on windows"
380
+ )
381
+ def test_pdf_accepts_scale_one():
369
382
  vl_version = "v5_8"
370
383
  vl_spec = load_vl_spec("circle_binned")
371
384
  vg_spec = vlc.vegalite_to_vega(vl_spec, vl_version=vl_version)
372
385
  svg = vlc.vegalite_to_svg(vl_spec, vl_version=vl_version)
373
386
 
374
- with pytest.raises(TypeError):
375
- vlc.vega_to_pdf(vg_spec, scale=2)
376
- with pytest.raises(TypeError):
377
- vlc.vegalite_to_pdf(vl_spec, vl_version=vl_version, scale=2)
378
- with pytest.raises(TypeError):
379
- vlc.svg_to_pdf(svg, scale=2)
387
+ assert vlc.vega_to_pdf(vg_spec, scale=1).startswith(b"%PDF")
388
+ assert vlc.vegalite_to_pdf(
389
+ vl_spec, vl_version=vl_version, scale=1
390
+ ).startswith(b"%PDF")
391
+ assert vlc.svg_to_pdf(svg, scale=1).startswith(b"%PDF")
392
+
393
+
394
+ @pytest.mark.parametrize("scale", [0, 2, 1.0000000000000002, float("nan")])
395
+ def test_pdf_rejects_scale_other_than_one(scale):
396
+ vl_version = "v5_8"
397
+ vl_spec = load_vl_spec("circle_binned")
398
+ vg_spec = vlc.vegalite_to_vega(vl_spec, vl_version=vl_version)
399
+ svg = vlc.vegalite_to_svg(vl_spec, vl_version=vl_version)
400
+
401
+ with pytest.raises(ValueError, match="scale argument must be 1"):
402
+ vlc.vega_to_pdf(vg_spec, scale=scale)
403
+ with pytest.raises(ValueError, match="scale argument must be 1"):
404
+ vlc.vegalite_to_pdf(vl_spec, vl_version=vl_version, scale=scale)
405
+ with pytest.raises(ValueError, match="scale argument must be 1"):
406
+ vlc.svg_to_pdf(svg, scale=scale)
407
+
408
+
409
+ @pytest.mark.parametrize(
410
+ "function_name", ["vega_to_pdf", "vegalite_to_pdf", "svg_to_pdf"]
411
+ )
412
+ def test_pdf_scale_deprecation_in_docstring(function_name):
413
+ docstring = getattr(vlc, function_name).__doc__
414
+ normalized_docstring = " ".join(docstring.split())
415
+ assert ".. deprecated:: 2.0.0" in docstring
416
+ assert "Retained only for backward compatibility with vl-convert 1.x" in docstring
417
+ assert "The only non-None value accepted is 1.0" in normalized_docstring
380
418
 
381
419
 
382
420
  @pytest.mark.skipif(sys.platform.startswith("win"), reason="Font mismatch on windows")
@@ -637,7 +637,7 @@ def svg_to_jpeg(
637
637
  """
638
638
  ...
639
639
 
640
- def svg_to_pdf(svg: str) -> bytes:
640
+ def svg_to_pdf(svg: str, *, scale: float | None = None) -> bytes:
641
641
  """
642
642
  Convert an SVG image string to PDF document data.
643
643
 
@@ -645,6 +645,11 @@ def svg_to_pdf(svg: str) -> bytes:
645
645
  ----------
646
646
  svg
647
647
  SVG image string
648
+ scale
649
+ .. deprecated:: 2.0.0
650
+ Retained only for backward compatibility with vl-convert 1.x.
651
+ The parameter has no effect on PDF output. The only non-None value
652
+ accepted is 1.0. Any other numeric value raises ``ValueError``.
648
653
 
649
654
  Returns
650
655
  -------
@@ -775,6 +780,7 @@ def vega_to_jpeg(
775
780
  def vega_to_pdf(
776
781
  vg_spec: VlSpec,
777
782
  *,
783
+ scale: float | None = None,
778
784
  format_locale: FormatLocale | None = None,
779
785
  time_format_locale: TimeFormatLocale | None = None,
780
786
  vega_plugin: str | None = None,
@@ -791,6 +797,11 @@ def vega_to_pdf(
791
797
  ----------
792
798
  vg_spec
793
799
  Vega JSON specification string or dict
800
+ scale
801
+ .. deprecated:: 2.0.0
802
+ Retained only for backward compatibility with vl-convert 1.x.
803
+ The parameter has no effect on PDF output. The only non-None value
804
+ accepted is 1.0. Any other numeric value raises ``ValueError``.
794
805
  format_locale
795
806
  d3-format locale name or dictionary
796
807
  time_format_locale
@@ -1173,6 +1184,7 @@ def vegalite_to_pdf(
1173
1184
  vl_spec: VlSpec,
1174
1185
  *,
1175
1186
  vl_version: str | None = None,
1187
+ scale: float | None = None,
1176
1188
  config: dict[str, Any] | None = None,
1177
1189
  theme: VegaThemes | None = None,
1178
1190
  format_locale: FormatLocale | None = None,
@@ -1193,6 +1205,11 @@ def vegalite_to_pdf(
1193
1205
  vl_version
1194
1206
  Vega-Lite library version string (e.g. 'v5.15')
1195
1207
  (default to latest)
1208
+ scale
1209
+ .. deprecated:: 2.0.0
1210
+ Retained only for backward compatibility with vl-convert 1.x.
1211
+ The parameter has no effect on PDF output. The only non-None value
1212
+ accepted is 1.0. Any other numeric value raises ``ValueError``.
1196
1213
  config
1197
1214
  Chart configuration object to apply during conversion
1198
1215
  theme
@@ -1558,7 +1575,7 @@ if TYPE_CHECKING:
1558
1575
  ) -> bytes:
1559
1576
  """Async version of ``svg_to_jpeg``. See sync function for full documentation."""
1560
1577
  ...
1561
- async def svg_to_pdf(self, svg: str) -> bytes:
1578
+ async def svg_to_pdf(self, svg: str, *, scale: float | None = None) -> bytes:
1562
1579
  """Async version of ``svg_to_pdf``. See sync function for full documentation."""
1563
1580
  ...
1564
1581
  async def svg_to_png(
@@ -1604,6 +1621,7 @@ if TYPE_CHECKING:
1604
1621
  self,
1605
1622
  vg_spec: VlSpec,
1606
1623
  *,
1624
+ scale: float | None = None,
1607
1625
  format_locale: FormatLocale | None = None,
1608
1626
  time_format_locale: TimeFormatLocale | None = None,
1609
1627
  vega_plugin: str | None = None,
@@ -1738,6 +1756,7 @@ if TYPE_CHECKING:
1738
1756
  vl_spec: VlSpec,
1739
1757
  *,
1740
1758
  vl_version: str | None = None,
1759
+ scale: float | None = None,
1741
1760
  config: dict[str, Any] | None = None,
1742
1761
  theme: VegaThemes | None = None,
1743
1762
  format_locale: FormatLocale | None = None,
@@ -1,18 +1,25 @@
1
1
  [package]
2
2
  name = "vl-convert-rs"
3
- version = "2.0.0-rc2"
4
- edition = "2021"
5
- license = "BSD-3-Clause"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
6
  readme = "README.md"
7
7
  homepage = "https://github.com/jonmmease/vl-convert"
8
- repository = "https://github.com/jonmmease/vl-convert"
8
+ repository.workspace = true
9
9
  description = "Library for converting Vega-Lite visualization specifications to Vega specifications"
10
10
  keywords = ["Visualization", "Vega", "Vega-Lite"]
11
11
 
12
+ [package.metadata.docs.rs]
13
+ # Compile the host build script with this cfg so it can avoid linking V8.
14
+ rustc-args = ["--cfg", "vl_convert_docsrs"]
15
+
16
+ [lints.rust]
17
+ unexpected_cfgs = { level = "warn", check-cfg = ["cfg(vl_convert_docsrs)"] }
18
+
12
19
  [dependencies]
13
- vl-convert-canvas2d = { path = "../vl-convert-canvas2d", version = "2.0.0-rc1" }
14
- vl-convert-canvas2d-deno = { path = "../vl-convert-canvas2d-deno", version = "2.0.0-rc1", features = ["svg"] }
15
- vl-convert-google-fonts = { path = "../vl-convert-google-fonts", version = "2.0.0-rc1", features = ["fontdb"] }
20
+ vl-convert-canvas2d = { workspace = true }
21
+ vl-convert-canvas2d-deno = { workspace = true, features = ["svg"] }
22
+ vl-convert-google-fonts = { workspace = true, features = ["fontdb"] }
16
23
 
17
24
  arc-swap = "1.9"
18
25
  deno_runtime = { workspace = true }
@@ -81,4 +88,4 @@ deno_error = { workspace = true }
81
88
  # Need "snapshot" feature to access deno_runtime::snapshot::create_runtime_snapshot
82
89
  deno_runtime = { workspace = true, features = ["snapshot"] }
83
90
  # Canvas 2D Deno extension - used in snapshot creation
84
- vl-convert-canvas2d-deno = { path = "../vl-convert-canvas2d-deno", version = "2.0.0-rc1" }
91
+ vl-convert-canvas2d-deno = { workspace = true }
@@ -0,0 +1,11 @@
1
+ Copyright 2023 Jon Mease
2
+
3
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
+
5
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6
+
7
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+
9
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
+
11
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.