diff options
| author | 2021-09-01 13:53:18 +0700 | |
|---|---|---|
| committer | 2021-09-01 13:53:18 +0700 | |
| commit | b7b7741578257bbf6a8b873c360182e2c9b920ab (patch) | |
| tree | 1a1cb723b156b25c5273c458aa9112b85ead0c8b /graphics/src/widget/canvas/path/builder.rs | |
| parent | dcd362813af45efbde84db940cfe6f6fbf40ca7b (diff) | |
| parent | 61dc9defada9a001bfd177b8e67c64add555d96a (diff) | |
| download | iced-b7b7741578257bbf6a8b873c360182e2c9b920ab.tar.gz iced-b7b7741578257bbf6a8b873c360182e2c9b920ab.tar.bz2 iced-b7b7741578257bbf6a8b873c360182e2c9b920ab.zip | |
Merge pull request #683 from hecrj/lyon-0.17
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 { | 
