Skip to content

Commit

Permalink
Upgrade all lyon crates to version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Weasy666 committed Sep 4, 2022
1 parent 83d0453 commit d88d30d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ default = ["2d", "3d"]
bevy = { version = "0.8", default-features = false, features = ["bevy_asset", "bevy_core_pipeline", "bevy_render"] }
copyless = "0.1"

lyon_geom = "0.17"
lyon_svg = "0.17"
lyon_tessellation = "0.17"
lyon_geom = "1.0"
lyon_tessellation = "1.0"
lyon_path = "1.0"
usvg = "0.20"
svgtypes = "0.8"

anyhow = "1.0"
thiserror = "1.0"
Expand Down
3 changes: 2 additions & 1 deletion src/svg.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use bevy::{asset::Handle, ecs::component::Component, math::{Mat4, Vec2, Vec3}, reflect::TypeUuid, render::{color::Color, mesh::Mesh}, transform::components::Transform};
use copyless::VecHelper;
use lyon_geom::euclid::default::Transform2D;
use lyon_svg::{parser::ViewBox, path::PathEvent};
use lyon_path::PathEvent;
use lyon_tessellation::math::Point;
use svgtypes::ViewBox;

use crate::Convert;

Expand Down

0 comments on commit d88d30d

Please sign in to comment.