diff --git a/Cargo.lock b/Cargo.lock index 9753b355..8525018a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1153,7 +1153,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "lyon" -version = "1.0.1" +version = "1.0.16" dependencies = [ "lyon_algorithms", "lyon_extra", @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "lyon_algorithms" -version = "1.0.5" +version = "1.0.16" dependencies = [ "lyon_path", "num-traits", @@ -1195,7 +1195,7 @@ dependencies = [ [[package]] name = "lyon_geom" -version = "1.0.6" +version = "1.0.16" dependencies = [ "arrayvec", "euclid", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "lyon_path" -version = "1.0.7" +version = "1.0.16" dependencies = [ "lyon_geom", "num-traits", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "lyon_tessellation" -version = "1.0.15" +version = "1.0.16" dependencies = [ "float_next_after", "lyon_extra", diff --git a/crates/algorithms/Cargo.toml b/crates/algorithms/Cargo.toml index 65a63b00..6d59650f 100644 --- a/crates/algorithms/Cargo.toml +++ b/crates/algorithms/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_algorithms" -version = "1.0.5" +version = "1.0.16" description = "2D Path manipulation/transformation algorithms." authors = ["Nicolas Silva "] repository = "https://github.com/nical/lyon" @@ -21,6 +21,6 @@ std = ["lyon_path/std", "num-traits/std"] serialization = ["serde", "lyon_path/serialization"] [dependencies] -lyon_path = { version = "1.0.2", path = "../path", default-features = false } +lyon_path = { version = "1.0.16", path = "../path", default-features = false } num-traits = { version = "0.2.15", default-features = false, features = ["libm"] } serde = { version = "1.0", optional = true, features = ["serde_derive"], default-features = false } diff --git a/crates/geom/Cargo.toml b/crates/geom/Cargo.toml index a20eea74..c656b2f7 100644 --- a/crates/geom/Cargo.toml +++ b/crates/geom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_geom" -version = "1.0.6" +version = "1.0.16" description = "2D quadratic and cubic bézier arcs and line segment math on top of euclid." authors = ["Nicolas Silva "] repository = "https://github.com/nical/lyon" diff --git a/crates/lyon/Cargo.toml b/crates/lyon/Cargo.toml index 3a898608..75dbafd9 100644 --- a/crates/lyon/Cargo.toml +++ b/crates/lyon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon" -version = "1.0.1" +version = "1.0.16" description = "2D Graphics rendering on the GPU using tessellation." authors = ["Nicolas Silva "] repository = "https://github.com/nical/lyon" @@ -21,6 +21,6 @@ extra = ["lyon_extra"] profiling = ["lyon_tessellation/profiling"] [dependencies] -lyon_tessellation = { version = "1.0.5", path = "../tessellation" } -lyon_algorithms = { version = "1.0.2", path = "../algorithms" } +lyon_tessellation = { version = "1.0.16", path = "../tessellation" } +lyon_algorithms = { version = "1.0.16", path = "../algorithms" } lyon_extra = { version = "1.0.0", optional = true, path = "../extra" } diff --git a/crates/path/Cargo.toml b/crates/path/Cargo.toml index c59c3533..9c5b6c91 100644 --- a/crates/path/Cargo.toml +++ b/crates/path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_path" -version = "1.0.7" +version = "1.0.16" description = "Types and utilities to store, build and iterate over 2D paths." authors = ["Nicolas Silva "] repository = "https://github.com/nical/lyon" @@ -18,6 +18,6 @@ std = ["lyon_geom/std", "num-traits/std"] serialization = ["serde/std", "lyon_geom/serialization"] [dependencies] -lyon_geom = { version = "1.0.6", path = "../geom", default-features = false } +lyon_geom = { version = "1.0.16", path = "../geom", default-features = false } num-traits = { version = "0.2.15", default-features = false, features = ["libm"] } serde = { version = "1.0", optional = true, features = ["serde_derive"], default-features = false } diff --git a/crates/tessellation/Cargo.toml b/crates/tessellation/Cargo.toml index e0686721..54a5f5fd 100644 --- a/crates/tessellation/Cargo.toml +++ b/crates/tessellation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_tessellation" -version = "1.0.15" +version = "1.0.16" description = "A low level path tessellation library." authors = ["Nicolas Silva "] repository = "https://github.com/nical/lyon" @@ -22,7 +22,7 @@ debugger = [] profiling = [] [dependencies] -lyon_path = { version = "1.0.3", path = "../path", default-features = false } +lyon_path = { version = "1.0.16", path = "../path", default-features = false } float_next_after = "1.0.0" serde = { version = "1.0", optional = true, features = ["serde_derive"] } num-traits = { version = "0.2.15", default-features = false, features = ["libm"] }