diff --git a/Cargo.lock b/Cargo.lock index 08f099fb..bf1b4f17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1153,7 +1153,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "lyon" -version = "1.0.16" +version = "1.0.19" dependencies = [ "lyon_algorithms", "lyon_extra", @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "lyon_algorithms" -version = "1.0.16" +version = "1.0.19" dependencies = [ "lyon_path", "num-traits", @@ -1195,7 +1195,7 @@ dependencies = [ [[package]] name = "lyon_geom" -version = "1.0.18" +version = "1.0.19" dependencies = [ "arrayvec", "euclid", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "lyon_path" -version = "1.0.16" +version = "1.0.19" dependencies = [ "lyon_geom", "num-traits", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "lyon_tessellation" -version = "1.0.16" +version = "1.0.19" dependencies = [ "float_next_after", "lyon_extra", diff --git a/crates/algorithms/Cargo.toml b/crates/algorithms/Cargo.toml index 6d59650f..62ed9488 100644 --- a/crates/algorithms/Cargo.toml +++ b/crates/algorithms/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_algorithms" -version = "1.0.16" +version = "1.0.19" 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.16", path = "../path", default-features = false } +lyon_path = { version = "1.0.19", 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 5e39b9d8..9d9a88bb 100644 --- a/crates/geom/Cargo.toml +++ b/crates/geom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_geom" -version = "1.0.18" +version = "1.0.19" 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 75dbafd9..421e8b85 100644 --- a/crates/lyon/Cargo.toml +++ b/crates/lyon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon" -version = "1.0.16" +version = "1.0.19" 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.16", path = "../tessellation" } -lyon_algorithms = { version = "1.0.16", path = "../algorithms" } -lyon_extra = { version = "1.0.0", optional = true, path = "../extra" } +lyon_tessellation = { version = "1.0.19", path = "../tessellation" } +lyon_algorithms = { version = "1.0.19", path = "../algorithms" } +lyon_extra = { version = "1.1.0", optional = true, path = "../extra" } diff --git a/crates/path/Cargo.toml b/crates/path/Cargo.toml index 9c5b6c91..3668b11c 100644 --- a/crates/path/Cargo.toml +++ b/crates/path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_path" -version = "1.0.16" +version = "1.0.19" 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.16", path = "../geom", default-features = false } +lyon_geom = { version = "1.0.19", 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 54a5f5fd..5b0a8f41 100644 --- a/crates/tessellation/Cargo.toml +++ b/crates/tessellation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lyon_tessellation" -version = "1.0.16" +version = "1.0.19" 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.16", path = "../path", default-features = false } +lyon_path = { version = "1.0.19", 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"] }