Skip to content

Commit 082b3f9

Browse files
Bump kurbo from 0.8.3 to 0.9.0 (#64)
* Bump kurbo from 0.8.3 to 0.9.0 Bumps [kurbo](https://github.com/linebender/kurbo) from 0.8.3 to 0.9.0. - [Release notes](https://github.com/linebender/kurbo/releases) - [Commits](https://github.com/linebender/kurbo/commits) --- updated-dependencies: - dependency-name: kurbo dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix kurbo_conv test for Kurbo 0.9.0 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Fred Brennan <copypaste@kittens.ph>
1 parent f2183f3 commit 082b3f9

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ derive_more = "0.99"
1111
derivative = "2.2"
1212
xmltree = { version = "0.10", features = ["attribute-order"] }
1313
log = "0.4"
14-
kurbo = { version = "0.8", default-features = false }
14+
kurbo = { version = "0.9", default-features = false }
1515
trees = "0.4"
1616
skia-safe = { version = "*", optional = true }
1717
image = { version = "0.24", features = ["png"], default-features = false, optional = true }

tests/kurbo_conv.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ use kurbo::Shape as _;
1010
fn test_kurbo_from() {
1111
log::info!("logging OK");
1212
let mut path: BezPath = kurbo::Circle{center:kurbo::Point::new(0., 0.), radius:50.0}.to_path(1.0);
13-
path.close_path();
1413
path.extend(kurbo::Rect::new(0., 0., 100., 100.).to_path(1.0));
15-
path.close_path();
1614
/*let mut path2 = BezPath::new();
1715
path2.move_to((30., 30.));
1816
path2.curve_to((-35., 80.), (-150., -50.), (-100., -100.));

0 commit comments

Comments
 (0)