-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
43 additions
and
43 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "lyon" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
description = "2D Graphics rendering on the GPU using tessellation." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -35,11 +35,11 @@ libtess2 = ["lyon_tess2"] | |
|
||
[dependencies] | ||
|
||
lyon_tessellation = { version = "0.13.0", path = "tessellation/" } | ||
lyon_algorithms = { version = "0.13.0", path = "algorithms/" } | ||
lyon_tessellation = { version = "0.13.1", path = "tessellation/" } | ||
lyon_algorithms = { version = "0.13.1", path = "algorithms/" } | ||
lyon_extra = { version = "0.13.0", optional = true, path = "extra/" } | ||
lyon_svg = { version = "0.13.0", optional = true, path = "svg/" } | ||
lyon_tess2 = { version = "0.13.0", optional = true, path = "tess2/" } | ||
lyon_tess2 = { version = "0.13.1", optional = true, path = "tess2/" } | ||
|
||
[workspace] | ||
members = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "lyon_algorithms" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
description = "2D Path manipulation/transformation algorithms." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -19,6 +19,6 @@ serialization = ["serde", "lyon_path/serialization"] | |
|
||
[dependencies] | ||
|
||
lyon_path = { version = "0.13.0", path = "../path" } | ||
lyon_path = { version = "0.13.1", path = "../path" } | ||
serde = { version = "1.0", optional = true, features = ["serde_derive"] } | ||
sid = "0.5.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lyon_geom" | ||
version = "0.12.3" | ||
version = "0.12.4" | ||
description = "2D quadratic and cubic bézier arcs and line segment math on top of euclid." | ||
authors = ["Nicolas Silva <[email protected]>"] | ||
repository = "https://github.com/nical/lyon" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lyon_path" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
description = "Types and utilities to store, build and iterate over 2D paths." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -15,5 +15,5 @@ name = "lyon_path" | |
serialization = ["serde", "lyon_geom/serialization"] | ||
|
||
[dependencies] | ||
lyon_geom = { version = "0.12.3", path = "../geom" } | ||
lyon_geom = { version = "0.12.4", path = "../geom" } | ||
serde = { version = "1.0", optional = true, features = ["serde_derive"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "lyon_tess2" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
description = "An additional path tessellator for lyon using libtess2." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -19,6 +19,6 @@ serialization = ["serde", "lyon_tessellation/serialization"] | |
|
||
[dependencies] | ||
|
||
lyon_tessellation = { version = "0.13.0", path = "../tessellation" } | ||
lyon_tessellation = { version = "0.13.1", path = "../tessellation" } | ||
serde = { version = "1.0", optional = true, features = ["serde_derive"] } | ||
tess2-sys = "0.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "lyon_tessellation" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
description = "A low level path tessellation library." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -20,7 +20,7 @@ debugger = [] | |
|
||
[dependencies] | ||
|
||
lyon_path = { version = "0.13.0", path = "../path" } | ||
lyon_path = { version = "0.13.1", path = "../path" } | ||
sid = "0.5" | ||
serde = { version = "1.0", optional = true, features = ["serde_derive"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters