From a66e94f7b9f7a6500d462d09755ae64823bd9b1e Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 18 Jul 2023 10:58:37 +0700 Subject: [PATCH] deps: Update usvg to 0.33 from 0.29 This is not the latest version currently available, but the changes to update to 0.34 are more involved, so we'll do this intermediate step now. --- examples/scenes/src/svg.rs | 1 + integrations/vello_svg/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/scenes/src/svg.rs b/examples/scenes/src/svg.rs index 122bd79..fc1350b 100644 --- a/examples/scenes/src/svg.rs +++ b/examples/scenes/src/svg.rs @@ -7,6 +7,7 @@ use anyhow::{Ok, Result}; use instant::Instant; use vello::{kurbo::Vec2, SceneBuilder, SceneFragment}; use vello_svg::usvg; +use vello_svg::usvg::TreeParsing; use crate::{ExampleScene, SceneParams, SceneSet}; diff --git a/integrations/vello_svg/Cargo.toml b/integrations/vello_svg/Cargo.toml index aad4fde..149e221 100644 --- a/integrations/vello_svg/Cargo.toml +++ b/integrations/vello_svg/Cargo.toml @@ -13,4 +13,4 @@ repository.workspace = true [dependencies] vello = { path = "../../" } -usvg = "0.29" +usvg = "0.33"