Skip to content

Commit

Permalink
Publish version 0.72
Browse files Browse the repository at this point in the history
Changes include:

- Update to rusttype 0.8.3 with more efficient text rendering PistonDevelopers#1411.
  This slightly affects how the `Text` render primitive is handled.
  Folks with custom conrod backends may want to take a peak at this PR
  to see how to update.
- Update to wgpu 0.7 and winit 0.24 in `conrod_wgpu`. PistonDevelopers#1413
- Reduce deps by updating to `num` 0.3. PistonDevelopers#1395

NOTE: `conrod_vulkano` will be excluded from this version update due to
`vk-sys` publishing a breaking change not too long ago. See PistonDevelopers#1409.
  • Loading branch information
mitchmindtree committed Apr 15, 2021
1 parent c9d9e28 commit 7c8417b
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 28 deletions.
4 changes: 2 additions & 2 deletions backends/conrod_example_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_example_shared"
version = "0.71.0"
version = "0.72.0"
authors = ["mitchmindtree <[email protected]>"]
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
description = "A small crate for sharing common code between conrod examples."
Expand All @@ -11,5 +11,5 @@ homepage = "https://github.com/pistondevelopers/conrod"
categories = ["gui"]

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.71" }
conrod_core = { path = "../../conrod_core", version = "0.72" }
rand = "0.7"
8 changes: 4 additions & 4 deletions backends/conrod_gfx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_gfx"
version = "0.71.0"
version = "0.72.0"
authors = ["Mitchell Nordine <[email protected]>"]
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
Expand All @@ -15,13 +15,13 @@ name = "conrod_gfx"
path = "./src/lib.rs"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.71" }
conrod_core = { path = "../../conrod_core", version = "0.72" }
gfx = { version = "0.18" }
gfx_core = { version = "0.9" }

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.71" }
conrod_winit = { path = "../conrod_winit", version = "0.71" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.72" }
conrod_winit = { path = "../conrod_winit", version = "0.72" }
find_folder = "0.3.0"
image = "0.22"
petgraph = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions backends/conrod_glium/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_glium"
version = "0.71.0"
version = "0.72.0"
authors = ["Mitchell Nordine <[email protected]>"]
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
Expand All @@ -15,12 +15,12 @@ name = "conrod_glium"
path = "./src/lib.rs"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.71" }
conrod_core = { path = "../../conrod_core", version = "0.72" }
glium = "0.28"

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.71" }
conrod_winit = { path = "../conrod_winit", version = "0.71" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.72" }
conrod_winit = { path = "../conrod_winit", version = "0.72" }
find_folder = "0.3.0"
image = "0.22"
petgraph = "0.4"
Expand Down
6 changes: 3 additions & 3 deletions backends/conrod_piston/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_piston"
version = "0.71.0"
version = "0.72.0"
authors = [
"Mitchell Nordine <[email protected]>",
"Sven Nilsen <[email protected]>"
Expand All @@ -21,12 +21,12 @@ name = "conrod_piston"
path = "./src/lib.rs"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.71" }
conrod_core = { path = "../../conrod_core", version = "0.72" }
piston2d-graphics = { version = "0.37" }
pistoncore-input = "1.0.0"

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.71" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.72" }
find_folder = "0.3.0"
image = "0.23"
petgraph = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions backends/conrod_rendy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_rendy"
version = "0.71.0"
version = "0.72.0"
authors = [
"David Partouche <[email protected]>",
"mitchmindtree <[email protected]>",
Expand All @@ -15,7 +15,7 @@ categories = ["gui"]
edition = "2018"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.71" }
conrod_core = { path = "../../conrod_core", version = "0.72" }
lazy_static = "1.4.0"
rendy = { version = "0.5.1", default-features = false, features = ["base", "texture"] }

Expand All @@ -30,8 +30,8 @@ no-slow-safety-checks = ["rendy/no-slow-safety-checks"]
profiler = ["rendy/profiler"]

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.71" }
conrod_winit = { path = "../conrod_winit", version = "0.71" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.72" }
conrod_winit = { path = "../conrod_winit", version = "0.72" }
find_folder = "0.3.0"
image = "0.22"

Expand Down
9 changes: 6 additions & 3 deletions backends/conrod_vulkano/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ categories = ["gui"]
edition = "2018"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.71" }
#conrod_core = { path = "../../conrod_core", version = "0.71" }
conrod_core = "0.71"
vulkano = "0.16"
vulkano-shaders = "0.16"

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.71" }
conrod_winit = { path = "../conrod_winit", version = "0.71" }
#conrod_example_shared = { path = "../conrod_example_shared", version = "0.71" }
conrod_example_shared = "0.71"
#conrod_winit = { path = "../conrod_winit", version = "0.71" }
conrod_winit = "0.71"
find_folder = "0.3"
image = "0.22"
vulkano-win = "0.16"
Expand Down
8 changes: 4 additions & 4 deletions backends/conrod_wgpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_wgpu"
version = "0.71.0"
version = "0.72.0"
authors = [
"mitchmindtree <[email protected]>",
]
Expand All @@ -14,12 +14,12 @@ categories = ["gui"]
edition = "2018"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.71" }
conrod_core = { path = "../../conrod_core", version = "0.72" }
wgpu = "0.7"

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.71" }
conrod_winit = { path = "../conrod_winit", version = "0.71" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.72" }
conrod_winit = { path = "../conrod_winit", version = "0.72" }
find_folder = "0.3"
futures = "0.3"
image = "0.23"
Expand Down
2 changes: 1 addition & 1 deletion backends/conrod_winit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_winit"
version = "0.71.0"
version = "0.72.0"
authors = [
"Mitchell Nordine <[email protected]>",
"Sven Nilsen <[email protected]>"
Expand Down
4 changes: 2 additions & 2 deletions conrod_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_core"
version = "0.71.0"
version = "0.72.0"
authors = [
"Mitchell Nordine <[email protected]>",
"Sven Nilsen <[email protected]>"
Expand All @@ -21,7 +21,7 @@ stdweb = [ "instant/stdweb" ]
wasm-bindgen = [ "instant/wasm-bindgen" ]

[dependencies]
conrod_derive = { path = "../conrod_derive", version = "0.71" }
conrod_derive = { path = "../conrod_derive", version = "0.72" }
daggy = "0.5"
fnv = "1.0"
num = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion conrod_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_derive"
version = "0.71.0"
version = "0.72.0"
authors = ["mitchmindtree <[email protected]>"]
description = "A crate providing procedural macros for the conrod library"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 7c8417b

Please sign in to comment.