vl-convert-python 2.0.0rc2__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.
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/Cargo.lock +15 -8
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/Cargo.toml +13 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/PKG-INFO +2 -2
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/pyproject.toml +4 -2
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/Cargo.toml +4 -4
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/Cargo.toml +5 -5
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/Cargo.toml +4 -4
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/Cargo.toml +5 -8
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/Cargo.toml +15 -8
- vl_convert_python-2.0.0rc5/vl-convert-rs/LICENSE +11 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/build.rs +44 -10
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/config.rs +1 -1
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/html.rs +1 -1
- {vl_convert_python-2.0.0rc2/vl-convert-google-fonts → vl_convert_python-2.0.0rc5}/LICENSE +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/README.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/arc.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/drawing.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/image_ops.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/mod.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/path_ops.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/text_rendering.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/transform.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/dom_matrix.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/drawing_state.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/error.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/font_config.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/font_parser.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/geometry.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/gradient.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/lib.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/path2d.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/pattern.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/pattern_cache.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/style.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/text.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/basic_drawing.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/clipping.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/common.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/fractional_coords.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/gradients.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/image_data.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/image_smoothing.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/main.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/max_width_text.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/path2d_features.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/patterns.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/put_image_data.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/canvas_comparison/transform_timing.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/tests/integration_tests.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/README.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/js/canvas_element_polyfill.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/js/canvas_polyfill.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/js/context_polyfill.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/js/image_polyfill.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/js/path2d_polyfill.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/lib.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/drawing.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/image_ops.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/mod.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/path_ops.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/state.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/text.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/transform.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/resource.rs +0 -0
- {vl_convert_python-2.0.0rc2/vl-convert-python → vl_convert_python-2.0.0rc5/vl-convert-google-fonts}/LICENSE +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/README.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/cache.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/client.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/config.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/error.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/fontdb_ext.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/lib.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/resolve.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/types.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/tests/load_google_fonts.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/CLAUDE.md +0 -0
- {vl_convert_python-2.0.0rc2/vl-convert-rs → vl_convert_python-2.0.0rc5/vl-convert-python}/LICENSE +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/README.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/notebooks/convert_vegalite.ipynb +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/src/config.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/src/conversions.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/src/fonts.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/src/info.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/src/lib.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/src/utils.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/.gitignore +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/conftest.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/circle_binned_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/circle_binned_cdn.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/google_fonts_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/google_fonts_cdn.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/html/.gitignore +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/local_font_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/pacifico_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_custom_scheme_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_custom_scheme_cdn.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_http_import_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_http_import_cdn.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_url_entry_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_url_entry_cdn.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_url_redirect_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/plugin_url_relative_imports_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/html-baselines/stacked_bar_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/html/.gitignore +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/svg/.gitignore +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/svg_google_fonts_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/svg_google_fonts_cdn.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/svg_local_font_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/svg_pacifico_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/svg_remote_images_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/svg-baselines/svg_remote_images_no_bundle.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_access_policy.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_asyncio.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_get_local_tz.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_get_locales.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_html_rendering.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_per_call_opts.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_specs.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_svg_rendering.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_themes.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_warnings.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/tests/test_workers.py +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/thirdparty_font.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/thirdparty_javascript.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/thirdparty_rust.yaml +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/vl_convert.pyi +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/CLAUDE.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/README.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/benches/scenegraph_scatter.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/examples/conversion1.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Bold.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-BoldItalic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Italic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/LiberationSans-Regular.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/fonts/liberation-sans/SIL Open Font License.txt +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-001.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-AE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-BH.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-DJ.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-DZ.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-EG.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-EH.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-ER.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-IL.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-IQ.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-JO.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-KM.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-KW.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-LB.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-LY.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-MA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-MR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-OM.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-PS.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-QA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SD.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SO.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SS.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-SY.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-TD.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-TN.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ar-YE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ca-ES.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/cs-CZ.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/da-DK.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/de-CH.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/de-DE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-CA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-GB.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-IE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-IN.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/en-US.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/es-BO.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/es-ES.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/es-MX.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/fi-FI.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/fr-CA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/fr-FR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/he-IL.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/hu-HU.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/it-IT.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ja-JP.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ko-KR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/mk-MK.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/nl-NL.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/pl-PL.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/pt-BR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/pt-PT.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/ru-RU.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/sl-SI.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/sv-SE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/uk-UA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/format/zh-CN.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ar-EG.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ar-SY.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ca-ES.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/cs-CZ.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/da-DK.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/de-CH.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/de-DE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/en-CA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/en-GB.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/en-US.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/es-ES.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/es-MX.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fa-IR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fi-FI.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fr-CA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/fr-FR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/he-IL.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/hr-HR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/hu-HU.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/it-IT.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ja-JP.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ko-KR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/mk-MK.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/nb-NO.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/nl-BE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/nl-NL.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/pl-PL.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/pt-BR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/ru-RU.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/sv-SE.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/tr-TR.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/uk-UA.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/vi-VN.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/zh-CN.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/locales/time-format/zh-TW.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/fonts.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/inner/conversions.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/inner/fonts.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/inner/init.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/inner/mod.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/inner/rendering.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/inner/runtime.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/mod.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/permissions.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/plugin.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/rendering.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/transfer.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/types.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/value_or_string.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/worker_pool.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/data_ops.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/bundle_hook.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/emit.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/mod.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_emit/text.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/deno_stubs.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/extract/mod.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/extract/scenegraph.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/extract/svg.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/extract/types.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/extract/vega.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/font_embed.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/image_loading.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/js/bootstrap.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/lib.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/module_loader/import_map.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/module_loader/mod.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/svg_font.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/text.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/Caveat-VariableFont_wght.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/OFL.txt +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/README.txt +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Bold.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Medium.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-Regular.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/Caveat/static/Caveat-SemiBold.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Bold.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-BoldItalic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Heavy.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-HeavyItalic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Light.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-LightItalic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Medium.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-MediumItalic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-Regular.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-RegularItalic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-SemiBold.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/Matter-SemiBoldItalic.ttf +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/demo.html +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/fonts/matter/stylesheet.css +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/locale/format/it-IT.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/locale/time-format/it-IT.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/expected/label_movies_scatter.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/expected/label_scatter_plot.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/expected/label_transform_test.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/expected/plugin_custom_scheme.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/label_movies_scatter.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/label_scatter_plot.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/label_transform_test.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/specs/plugin_custom_scheme.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/svg-specs/expected/svg_auto_google_fonts.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/svg-specs/expected/svg_auto_google_fonts_pacifico.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_config.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_heap_limit.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_plugins.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_specs.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_themes.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/test_utils.rs +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/bar_chart_trellis_compact.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/circle_binned.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/circle_binned_base_url.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/custom_projection.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_14/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_15/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_16/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_17/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_20/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_21/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact-excel.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/bar_chart_trellis_compact.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned-dark.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/circle_binned_base_url.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/custom_projection.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/float_font_size.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/font_with_quotes.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/geoScale.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/geoScale.sg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/gh_174.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/google_fonts.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale-fivethirtyeight.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/line_with_log_scale.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/long_legend_label.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/long_text_lable.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/lookup_urls.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/maptile_background_2.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.sg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/no_text_in_font_metrics.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/numeric_font_weight.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/quakes_initial_selection.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/remote_images.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h-vox.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.svg +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stacked_bar_h2.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/stocks_locale.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/table_heatmap.png +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v5_8/table_heatmap.sg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_1/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/circle_binned.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/circle_binned.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/seattle-weather.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/seattle-weather.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/stacked_bar_h.vg.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/expected/v6_4/stacked_bar_h.vg.pretty.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/float_font_size.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/font_with_quotes.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/geoScale.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/gh_174.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/google_fonts.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/line_with_log_scale.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/local_font.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/long_legend_label.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/long_text_lable.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/lookup_urls.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/maptile_background.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/maptile_background_2.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/no_text_in_font_metrics.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/numeric_font_weight.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/pacifico_title.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/quakes_initial_selection.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/remote_images.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/seattle-weather.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/stacked_bar_h.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/stacked_bar_h2.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/stocks_locale.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/tests/vl-specs/table_heatmap.vl.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/thirdparty_font.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/thirdparty_javascript.md +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/thirdparty_rust.yaml +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#fast-json-stable-str_a4987/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/#json-stringify-prett_2eaac/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/@msgpack/msgpack@3.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/clone@2.1.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-array@3.2.4/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-color@3.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-delaunay@6.0.4/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dispatch@3.0.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-dsv@3.0.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-ease@3.0.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-force@3.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-format@3.1.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo-projection@4.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-geo@3.1.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-hierarchy@3.1.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-interpolate@3.0.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-path@3.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-quadtree@3.0.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale-chromatic@3.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-scale@4.0.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-shape@3.2.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time-format@4.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-time@3.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/d3-timer@3.0.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/delaunator@5.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/fast-deep-equal@3.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/internmap@2.0.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/lodash.debounce@4.0.8/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/robust-predicates@3.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/topojson-client@3.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-canvas@2.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-crossfilter@5.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-dataflow@6.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-embed@7.2.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-encode@5.2.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-event-selector@4.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-expression@6.2.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-force@5.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-format@2.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-functions@6.2.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-geo@5.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-hierarchy@5.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-interpreter@2.3.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-label@2.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.14.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.15.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.16.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.17.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.20.1/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.21.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@5.8.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-lite@6.4.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-loader@5.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-parser@7.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-projection@2.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-regression@2.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-runtime@7.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scale@8.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-scenegraph@5.3.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-schema-url-parser@3.0.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-selections@6.1.5/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-statistics@2.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-themes@3.0.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-time@3.3.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-tooltip@1.1.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-transforms@5.2.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-util@2.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view-transforms@5.2.2/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-view@6.2.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-voronoi@5.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega-wordcloud@5.1.3/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/cdn.jsdelivr.net/npm/vega@6.4.0/#+esm_3b53f.js +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/vendor/manifest.json +0 -0
- {vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/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-
|
|
10856
|
+
version = "2.0.0-rc5"
|
|
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-
|
|
10885
|
+
version = "2.0.0-rc5"
|
|
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-
|
|
10904
|
+
version = "2.0.0-rc5"
|
|
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-
|
|
10920
|
+
version = "2.0.0-rc5"
|
|
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-
|
|
10939
|
+
version = "2.0.0-rc5"
|
|
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-
|
|
10953
|
+
version = "2.0.0-rc5"
|
|
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-
|
|
11007
|
+
version = "2.0.0-rc5"
|
|
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 = "
|
|
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-rc5"
|
|
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-rc5" }
|
|
27
|
+
vl-convert-canvas2d-deno = { path = "vl-convert-canvas2d-deno", version = "=2.0.0-rc5" }
|
|
28
|
+
vl-convert-google-fonts = { path = "vl-convert-google-fonts", version = "=2.0.0-rc5" }
|
|
29
|
+
vl-convert-rs = { path = "vl-convert-rs", version = "=2.0.0-rc5" }
|
|
30
|
+
vl-convert-server = { path = "vl-convert-server", version = "=2.0.0-rc5" }
|
|
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.
|
|
3
|
+
Version: 2.0.0rc5
|
|
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.
|
|
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"
|
|
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 =
|
|
4
|
-
edition =
|
|
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 =
|
|
7
|
-
repository =
|
|
6
|
+
license.workspace = true
|
|
7
|
+
repository.workspace = true
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
keywords = ["canvas", "2d", "graphics", "tiny-skia"]
|
|
10
10
|
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/Cargo.toml
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "vl-convert-canvas2d-deno"
|
|
3
|
-
version =
|
|
4
|
-
edition =
|
|
3
|
+
version.workspace = true
|
|
4
|
+
edition.workspace = true
|
|
5
5
|
description = "Deno extension for Canvas 2D API wrapping vl-convert-canvas2d"
|
|
6
|
-
license =
|
|
7
|
-
repository =
|
|
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 = {
|
|
21
|
+
vl-convert-canvas2d = { workspace = true }
|
|
22
22
|
|
|
23
23
|
# For gradient color parsing
|
|
24
24
|
csscolorparser = "0.8.4"
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/Cargo.toml
RENAMED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "vl-convert-google-fonts"
|
|
3
|
-
version =
|
|
4
|
-
edition =
|
|
3
|
+
version.workspace = true
|
|
4
|
+
edition.workspace = true
|
|
5
5
|
description = "Google Fonts downloading and caching"
|
|
6
|
-
license =
|
|
6
|
+
license.workspace = true
|
|
7
7
|
readme = "README.md"
|
|
8
8
|
homepage = "https://github.com/vega/vl-convert"
|
|
9
|
-
repository =
|
|
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 =
|
|
4
|
-
edition =
|
|
5
|
-
license =
|
|
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 =
|
|
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 = {
|
|
16
|
+
vl-convert-rs = { workspace = true }
|
|
20
17
|
pyo3 = { workspace = true }
|
|
21
18
|
lazy_static = { workspace = true }
|
|
22
19
|
futures = { workspace = true }
|
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "vl-convert-rs"
|
|
3
|
-
version =
|
|
4
|
-
edition =
|
|
5
|
-
license =
|
|
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 =
|
|
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 = {
|
|
14
|
-
vl-convert-canvas2d-deno = {
|
|
15
|
-
vl-convert-google-fonts = {
|
|
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 = {
|
|
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.
|
|
@@ -3,20 +3,26 @@
|
|
|
3
3
|
//! Generates a V8 snapshot at build time that embeds the deno_runtime extensions
|
|
4
4
|
//! PLUS our vl_convert_runtime extension. This is required for container compatibility
|
|
5
5
|
//! (manylinux, slim images) and improves startup performance.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
use
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
6
|
+
|
|
7
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
8
|
+
use {
|
|
9
|
+
deno_core::{extension, op2},
|
|
10
|
+
deno_error::JsErrorBox,
|
|
11
|
+
deno_runtime::{
|
|
12
|
+
ops::bootstrap::SnapshotOptions,
|
|
13
|
+
snapshot::{create_runtime_snapshot, LazyExtensionFileKind},
|
|
14
|
+
},
|
|
15
|
+
std::{
|
|
16
|
+
collections::HashSet,
|
|
17
|
+
io::Write,
|
|
18
|
+
path::{Path, PathBuf},
|
|
19
|
+
},
|
|
20
|
+
};
|
|
16
21
|
|
|
17
22
|
// Stub ops for vl-convert-specific ops (not canvas-related)
|
|
18
23
|
// These match the signatures of the real ops but will never be called during snapshot creation.
|
|
19
24
|
|
|
25
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
20
26
|
#[op2]
|
|
21
27
|
#[string]
|
|
22
28
|
fn op_get_json_arg(_arg_id: i32) -> Result<String, JsErrorBox> {
|
|
@@ -25,6 +31,7 @@ fn op_get_json_arg(_arg_id: i32) -> Result<String, JsErrorBox> {
|
|
|
25
31
|
))
|
|
26
32
|
}
|
|
27
33
|
|
|
34
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
28
35
|
#[op2(fast)]
|
|
29
36
|
fn op_set_msgpack_result(_result_id: i32, #[buffer] _data: &[u8]) -> Result<(), JsErrorBox> {
|
|
30
37
|
Err(JsErrorBox::generic(
|
|
@@ -32,30 +39,35 @@ fn op_set_msgpack_result(_result_id: i32, #[buffer] _data: &[u8]) -> Result<(),
|
|
|
32
39
|
))
|
|
33
40
|
}
|
|
34
41
|
|
|
42
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
35
43
|
#[op2]
|
|
36
44
|
#[string]
|
|
37
45
|
async fn op_vega_data_fetch(#[string] _url: String) -> Result<String, JsErrorBox> {
|
|
38
46
|
Err(JsErrorBox::generic("op_vega_data_fetch stub"))
|
|
39
47
|
}
|
|
40
48
|
|
|
49
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
41
50
|
#[op2]
|
|
42
51
|
#[buffer]
|
|
43
52
|
async fn op_vega_data_fetch_bytes(#[string] _url: String) -> Result<Vec<u8>, JsErrorBox> {
|
|
44
53
|
Err(JsErrorBox::generic("op_vega_data_fetch_bytes stub"))
|
|
45
54
|
}
|
|
46
55
|
|
|
56
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
47
57
|
#[op2]
|
|
48
58
|
#[string]
|
|
49
59
|
async fn op_vega_file_read(#[string] _path: String) -> Result<String, JsErrorBox> {
|
|
50
60
|
Err(JsErrorBox::generic("op_vega_file_read stub"))
|
|
51
61
|
}
|
|
52
62
|
|
|
63
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
53
64
|
#[op2]
|
|
54
65
|
#[buffer]
|
|
55
66
|
async fn op_vega_file_read_bytes(#[string] _path: String) -> Result<Vec<u8>, JsErrorBox> {
|
|
56
67
|
Err(JsErrorBox::generic("op_vega_file_read_bytes stub"))
|
|
57
68
|
}
|
|
58
69
|
|
|
70
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
59
71
|
extension!(
|
|
60
72
|
vl_convert_runtime,
|
|
61
73
|
ops = [
|
|
@@ -73,6 +85,7 @@ extension!(
|
|
|
73
85
|
],
|
|
74
86
|
);
|
|
75
87
|
|
|
88
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
76
89
|
fn transpile_residual_source(
|
|
77
90
|
out_dir: &Path,
|
|
78
91
|
specifier: &str,
|
|
@@ -108,12 +121,14 @@ fn transpile_residual_source(
|
|
|
108
121
|
out_path
|
|
109
122
|
}
|
|
110
123
|
|
|
124
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
111
125
|
fn wrap_residual_js_source(path: &Path) {
|
|
112
126
|
let source = std::fs::read_to_string(path).unwrap();
|
|
113
127
|
let wrapped = deno_runtime::deno_core::wrap_lazy_ext_script(&source);
|
|
114
128
|
std::fs::write(path, wrapped.as_bytes()).unwrap();
|
|
115
129
|
}
|
|
116
130
|
|
|
131
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
117
132
|
fn assert_residual_entry_ascii(path: &Path, specifier: &str) {
|
|
118
133
|
assert!(
|
|
119
134
|
specifier.is_ascii(),
|
|
@@ -127,6 +142,7 @@ fn assert_residual_entry_ascii(path: &Path, specifier: &str) {
|
|
|
127
142
|
);
|
|
128
143
|
}
|
|
129
144
|
|
|
145
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
130
146
|
fn write_residual_table(
|
|
131
147
|
file: &mut std::fs::File,
|
|
132
148
|
out_dir: &Path,
|
|
@@ -148,6 +164,7 @@ fn write_residual_table(
|
|
|
148
164
|
writeln!(file, "];").unwrap();
|
|
149
165
|
}
|
|
150
166
|
|
|
167
|
+
#[cfg(not(vl_convert_docsrs))]
|
|
151
168
|
fn main() {
|
|
152
169
|
let out_dir = PathBuf::from(std::env::var_os("OUT_DIR").unwrap());
|
|
153
170
|
let snapshot_path = out_dir.join("VL_CONVERT_SNAPSHOT.bin");
|
|
@@ -229,3 +246,20 @@ fn main() {
|
|
|
229
246
|
&residual_esm,
|
|
230
247
|
);
|
|
231
248
|
}
|
|
249
|
+
|
|
250
|
+
#[cfg(vl_convert_docsrs)]
|
|
251
|
+
fn main() {
|
|
252
|
+
let out_dir = std::path::PathBuf::from(std::env::var_os("OUT_DIR").unwrap());
|
|
253
|
+
|
|
254
|
+
println!("cargo:rerun-if-changed=build.rs");
|
|
255
|
+
std::fs::write(out_dir.join("VL_CONVERT_SNAPSHOT.bin"), []).unwrap();
|
|
256
|
+
std::fs::write(
|
|
257
|
+
out_dir.join("VL_CONVERT_RESIDUAL_SOURCES.rs"),
|
|
258
|
+
concat!(
|
|
259
|
+
"// @generated by vl-convert-rs/build.rs for docs.rs; do not edit.\n",
|
|
260
|
+
"pub(crate) static VL_CONVERT_RESIDUAL_LAZY_JS: &[(&str, &str)] = &[];\n",
|
|
261
|
+
"pub(crate) static VL_CONVERT_RESIDUAL_LAZY_ESM: &[(&str, &str)] = &[];\n",
|
|
262
|
+
),
|
|
263
|
+
)
|
|
264
|
+
.unwrap();
|
|
265
|
+
}
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-rs/src/converter/config.rs
RENAMED
|
@@ -134,7 +134,7 @@ pub struct VlcConfig {
|
|
|
134
134
|
/// Base URL for resolving relative data paths in Vega specs.
|
|
135
135
|
pub base_url: BaseUrlSetting,
|
|
136
136
|
/// Allowlist for data access (HTTP URLs, filesystem paths).
|
|
137
|
-
/// Uses CSP-style patterns: "https:" (scheme), "https://example.com
|
|
137
|
+
/// Uses CSP-style patterns: "https:" (scheme), "<https://example.com/>" (prefix),
|
|
138
138
|
/// "/data/" (filesystem). Default is `["http:", "https:"]`: any
|
|
139
139
|
/// HTTP/HTTPS URL is allowed; no filesystem access. Pass `Vec::new()`
|
|
140
140
|
/// to block all network data; `["*"]` to allow everything.
|
|
@@ -667,7 +667,7 @@ impl VlConverter {
|
|
|
667
667
|
|
|
668
668
|
/// Return font information for a Vega-Lite spec.
|
|
669
669
|
///
|
|
670
|
-
/// Compiles the spec to Vega first, then delegates to [`vega_fonts`].
|
|
670
|
+
/// Compiles the spec to Vega first, then delegates to [`Self::vega_fonts`].
|
|
671
671
|
pub async fn vegalite_fonts(
|
|
672
672
|
&self,
|
|
673
673
|
vl_spec: impl Into<ValueOrString>,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/drawing.rs
RENAMED
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/context/mod.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/dom_matrix.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/drawing_state.rs
RENAMED
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/font_config.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/font_parser.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/geometry.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/gradient.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/pattern.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d/src/pattern_cache.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/README.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/lib.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/mod.rs
RENAMED
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/state.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/ops/text.rs
RENAMED
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-canvas2d-deno/src/resource.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/cache.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/client.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/config.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/error.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/fontdb_ext.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/lib.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/resolve.rs
RENAMED
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-google-fonts/src/types.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2/vl-convert-rs → vl_convert_python-2.0.0rc5/vl-convert-python}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vl_convert_python-2.0.0rc2 → vl_convert_python-2.0.0rc5}/vl-convert-python/src/conversions.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|