diff options
author | 2022-07-11 18:22:04 +0200 | |
---|---|---|
committer | 2022-07-11 18:22:04 +0200 | |
commit | 1404b88ea6ecf5b082d5c33d5f17dc15ce70b310 (patch) | |
tree | 6bb6c6159f8d5c08e4dc996720f51e6638fd34ac /graphics/src/widget/canvas/path/builder.rs | |
parent | d1505a98d967f36679f8b7d98347ba03a4c2af1c (diff) | |
parent | f7059a1c9a6ce46ba833400dde860912da780464 (diff) | |
download | iced-1404b88ea6ecf5b082d5c33d5f17dc15ce70b310.tar.gz iced-1404b88ea6ecf5b082d5c33d5f17dc15ce70b310.tar.bz2 iced-1404b88ea6ecf5b082d5c33d5f17dc15ce70b310.zip |
Merge pull request #1384 from iced-rs/update-lyon
Update `lyon` to `1.0`
Diffstat (limited to 'graphics/src/widget/canvas/path/builder.rs')
-rw-r--r-- | graphics/src/widget/canvas/path/builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/widget/canvas/path/builder.rs b/graphics/src/widget/canvas/path/builder.rs index 88acf544..c49ccdc3 100644 --- a/graphics/src/widget/canvas/path/builder.rs +++ b/graphics/src/widget/canvas/path/builder.rs @@ -8,7 +8,7 @@ use lyon::path::builder::SvgPathBuilder; /// Once a [`Path`] is built, it can no longer be mutated. #[allow(missing_debug_implementations)] pub struct Builder { - raw: lyon::path::builder::WithSvg<lyon::path::path::Builder>, + raw: lyon::path::builder::WithSvg<lyon::path::path::BuilderImpl>, } impl Builder { |