-
Notifications
You must be signed in to change notification settings - Fork 144
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
12 changed files
with
80 additions
and
57 deletions.
There are no files selected for viewing
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
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.10.0" | ||
version = "0.11.0" | ||
description = "2D Graphics rendering on the GPU using tessellation." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -34,11 +34,11 @@ libtess2 = ["lyon_tess2"] | |
|
||
[dependencies] | ||
|
||
lyon_tessellation = { version = "0.10.0", path = "tessellation/" } | ||
lyon_tessellation = { version = "0.11.0", path = "tessellation/" } | ||
lyon_algorithms = { version = "0.11.0", path = "algorithms/" } | ||
lyon_extra = { version = "0.10.0", optional = true, path = "extra/" } | ||
lyon_svg = { version = "0.10.0", optional = true, path = "svg/" } | ||
lyon_tess2 = { version = "0.10.0", optional = true, path = "tess2/" } | ||
lyon_extra = { version = "0.11.0", optional = true, path = "extra/" } | ||
lyon_svg = { version = "0.11.0", optional = true, path = "svg/" } | ||
lyon_tess2 = { version = "0.11.0", 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
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_extra" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
description = "Various optional utilities for the lyon crate." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -14,5 +14,5 @@ name = "lyon_extra" | |
|
||
[dependencies] | ||
|
||
lyon_path = { version = "0.10.0", path = "../path" } | ||
lyon_svg = { version = "0.10.0", path = "../svg" } | ||
lyon_path = { version = "0.11.0", path = "../path" } | ||
lyon_svg = { version = "0.11.0", path = "../svg" } |
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_geom" | ||
version = "0.10.0" | ||
description = "2D quadratic and cubic bezier arcs and line segment math on top of euclid." | ||
version = "0.11.0" | ||
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" | ||
documentation = "https://docs.rs/lyon_geom/" | ||
|
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.10.0" | ||
version = "0.11.0" | ||
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.10.0", path = "../geom" } | ||
lyon_geom = { version = "0.11.0", 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
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_svg" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
description = "SVG helpers for the lyon crates." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -13,6 +13,6 @@ path = "src/lib.rs" | |
|
||
[dependencies] | ||
|
||
lyon_path = { version = "0.10.0", path = "../path" } | ||
lyon_path = { version = "0.11.0", path = "../path" } | ||
|
||
svgparser = "0.6" |
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.10.0" | ||
version = "0.11.0" | ||
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.10.0", path = "../tessellation" } | ||
lyon_tessellation = { version = "0.11.0", 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.10.0" | ||
version = "0.11.0" | ||
description = "A low level path tessellation library." | ||
authors = [ "Nicolas Silva <[email protected]>" ] | ||
repository = "https://github.com/nical/lyon" | ||
|
@@ -19,9 +19,9 @@ serialization = ["serde", "lyon_path/serialization"] | |
|
||
[dependencies] | ||
|
||
lyon_path = { version = "0.10.0", path = "../path" } | ||
lyon_path = { version = "0.11.0", path = "../path" } | ||
sid = "0.5" | ||
serde = { version = "1.0", optional = true, features = ["serde_derive"] } | ||
|
||
[dev-dependencies] | ||
lyon_extra = { version = "0.10.0", path = "../extra" } | ||
lyon_extra = { version = "0.11.0", path = "../extra" } |