Update lyon to 0.17 in iced_graphics

This commit is contained in:
Héctor Ramón Jiménez 2021-01-05 00:00:36 +01:00
parent 6821114cae
commit d0fe7b57ea
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
4 changed files with 24 additions and 28 deletions

View file

@ -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 {