Skip to content

Commit 5b4da31

Browse files
committed
Version 0.13.0
1 parent ee125d1 commit 5b4da31

File tree

9 files changed

+55
-55
lines changed

9 files changed

+55
-55
lines changed

Cargo.lock

+34-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "lyon"
4-
version = "0.11.1"
4+
version = "0.13.0"
55
description = "2D Graphics rendering on the GPU using tessellation."
66
authors = [ "Nicolas Silva <[email protected]>" ]
77
repository = "https://github.com/nical/lyon"
@@ -35,11 +35,11 @@ libtess2 = ["lyon_tess2"]
3535

3636
[dependencies]
3737

38-
lyon_tessellation = { version = "0.11.0", path = "tessellation/" }
39-
lyon_algorithms = { version = "0.11.1", path = "algorithms/" }
40-
lyon_extra = { version = "0.11.0", optional = true, path = "extra/" }
41-
lyon_svg = { version = "0.11.0", optional = true, path = "svg/" }
42-
lyon_tess2 = { version = "0.11.0", optional = true, path = "tess2/" }
38+
lyon_tessellation = { version = "0.13.0", path = "tessellation/" }
39+
lyon_algorithms = { version = "0.13.0", path = "algorithms/" }
40+
lyon_extra = { version = "0.13.0", optional = true, path = "extra/" }
41+
lyon_svg = { version = "0.13.0", optional = true, path = "svg/" }
42+
lyon_tess2 = { version = "0.13.0", optional = true, path = "tess2/" }
4343

4444
[workspace]
4545
members = [

algorithms/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "lyon_algorithms"
4-
version = "0.11.1"
4+
version = "0.13.0"
55
description = "2D Path manipulation/transformation algorithms."
66
authors = [ "Nicolas Silva <[email protected]>" ]
77
repository = "https://github.com/nical/lyon"
@@ -19,6 +19,6 @@ serialization = ["serde", "lyon_path/serialization"]
1919

2020
[dependencies]
2121

22-
lyon_path = { version = "0.12.0", path = "../path" }
22+
lyon_path = { version = "0.13.0", path = "../path" }
2323
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
2424
sid = "0.5.2"

extra/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "lyon_extra"
4-
version = "0.11.0"
4+
version = "0.13.0"
55
description = "Various optional utilities for the lyon crate."
66
authors = [ "Nicolas Silva <[email protected]>" ]
77
repository = "https://github.com/nical/lyon"
@@ -14,5 +14,5 @@ name = "lyon_extra"
1414

1515
[dependencies]
1616

17-
lyon_path = { version = "0.12.0", path = "../path" }
18-
lyon_svg = { version = "0.11.0", path = "../svg" }
17+
lyon_path = { version = "0.13.0", path = "../path" }
18+
lyon_svg = { version = "0.13.0", path = "../svg" }

geom/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lyon_geom"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
description = "2D quadratic and cubic bézier arcs and line segment math on top of euclid."
55
authors = ["Nicolas Silva <[email protected]>"]
66
repository = "https://github.com/nical/lyon"

path/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lyon_path"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
description = "Types and utilities to store, build and iterate over 2D paths."
55
authors = [ "Nicolas Silva <[email protected]>" ]
66
repository = "https://github.com/nical/lyon"
@@ -15,5 +15,5 @@ name = "lyon_path"
1515
serialization = ["serde", "lyon_geom/serialization"]
1616

1717
[dependencies]
18-
lyon_geom = { version = "0.12.1", path = "../geom" }
18+
lyon_geom = { version = "0.12.3", path = "../geom" }
1919
serde = { version = "1.0", optional = true, features = ["serde_derive"] }

svg/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "lyon_svg"
4-
version = "0.11.0"
4+
version = "0.13.0"
55
description = "SVG helpers for the lyon crates."
66
authors = [ "Nicolas Silva <[email protected]>" ]
77
repository = "https://github.com/nical/lyon"
@@ -13,6 +13,6 @@ path = "src/lib.rs"
1313

1414
[dependencies]
1515

16-
lyon_path = { version = "0.12.0", path = "../path" }
16+
lyon_path = { version = "0.13.0", path = "../path" }
1717

1818
svgparser = "0.8"

tess2/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "lyon_tess2"
4-
version = "0.11.0"
4+
version = "0.13.0"
55
description = "An additional path tessellator for lyon using libtess2."
66
authors = [ "Nicolas Silva <[email protected]>" ]
77
repository = "https://github.com/nical/lyon"
@@ -19,6 +19,6 @@ serialization = ["serde", "lyon_tessellation/serialization"]
1919

2020
[dependencies]
2121

22-
lyon_tessellation = { version = "0.11.0", path = "../tessellation" }
22+
lyon_tessellation = { version = "0.13.0", path = "../tessellation" }
2323
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
2424
tess2-sys = "0.0.1"

tessellation/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "lyon_tessellation"
4-
version = "0.11.0"
4+
version = "0.13.0"
55
description = "A low level path tessellation library."
66
authors = [ "Nicolas Silva <[email protected]>" ]
77
repository = "https://github.com/nical/lyon"
@@ -20,9 +20,9 @@ debugger = []
2020

2121
[dependencies]
2222

23-
lyon_path = { version = "0.12.0", path = "../path" }
23+
lyon_path = { version = "0.13.0", path = "../path" }
2424
sid = "0.5"
2525
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
2626

2727
[dev-dependencies]
28-
lyon_extra = { version = "0.11.0", path = "../extra" }
28+
lyon_extra = { version = "0.13.0", path = "../extra" }

0 commit comments

Comments
 (0)