Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <nical@fastmail.com>"]
repository = "https://github.com/nical/lyon"
Expand All @@ -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 }
2 changes: 1 addition & 1 deletion crates/geom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <nical@fastmail.com>"]
repository = "https://github.com/nical/lyon"
Expand Down
6 changes: 3 additions & 3 deletions crates/lyon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <nical@fastmail.com>"]
repository = "https://github.com/nical/lyon"
Expand All @@ -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" }
4 changes: 2 additions & 2 deletions crates/path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <nical@fastmail.com>"]
repository = "https://github.com/nical/lyon"
Expand All @@ -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 }
4 changes: 2 additions & 2 deletions crates/tessellation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <nical@fastmail.com>"]
repository = "https://github.com/nical/lyon"
Expand All @@ -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"] }
Expand Down
Loading