diff options
author | 2021-01-05 00:00:36 +0100 | |
---|---|---|
committer | 2021-08-26 14:54:02 +0700 | |
commit | d0fe7b57ea343665905933cdf206d8206be462b9 (patch) | |
tree | 52878042744926f82c7f0a4379a37870de4dcaa2 /graphics/src/widget/canvas/path/builder.rs | |
parent | 6821114cae2e41fd2bc69d6fcaee1e8574ac061d (diff) | |
download | iced-d0fe7b57ea343665905933cdf206d8206be462b9.tar.gz iced-d0fe7b57ea343665905933cdf206d8206be462b9.tar.bz2 iced-d0fe7b57ea343665905933cdf206d8206be462b9.zip |
Update `lyon` to `0.17` in `iced_graphics`
Diffstat (limited to 'graphics/src/widget/canvas/path/builder.rs')
-rw-r--r-- | graphics/src/widget/canvas/path/builder.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/widget/canvas/path/builder.rs b/graphics/src/widget/canvas/path/builder.rs index 5ce0e02c..d04dbdde 100644 --- a/graphics/src/widget/canvas/path/builder.rs +++ b/graphics/src/widget/canvas/path/builder.rs @@ -1,14 +1,14 @@ use crate::canvas::path::{arc, Arc, Path}; use iced_native::{Point, Size}; -use lyon::path::builder::{Build, FlatPathBuilder, PathBuilder, SvgBuilder}; +use lyon::path::builder::SvgPathBuilder; /// A [`Path`] builder. /// /// Once a [`Path`] is built, it can no longer be mutated. #[allow(missing_debug_implementations)] pub struct Builder { - raw: lyon::path::builder::SvgPathBuilder<lyon::path::Builder>, + raw: lyon::path::builder::WithSvg<lyon::path::path::Builder>, } impl Builder { |