Skip to content

Commit 36c5c40

Browse files
committed
Publish conrod_example_shared as necessary for conrod backend dev-dependency use
1 parent f62e74f commit 36c5c40

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

backends/conrod_example_shared/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "conrod_example_shared"
3-
version = "0.1.0"
3+
version = "0.62.0"
44
authors = ["mitchmindtree <[email protected]>"]
5+
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
56
description = "A small crate for sharing common code between conrod examples."
7+
license = "MIT OR Apache-2.0"
8+
readme = "../../README.md"
9+
repository = "https://github.com/pistondevelopers/conrod.git"
10+
homepage = "https://github.com/pistondevelopers/conrod"
11+
documentation = "http://docs.rs/conrod"
12+
categories = ["gui"]
613

714
[dependencies]
815
conrod_core = { path = "../../conrod_core", version = "0.62" }

backends/conrod_gfx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gfx = { version = "0.17" }
2121
gfx_core = { version = "0.8" }
2222

2323
[dev-dependencies]
24-
conrod_example_shared = { path = "../conrod_example_shared" }
24+
conrod_example_shared = { path = "../conrod_example_shared", version = "0.62" }
2525
conrod_winit = { path = "../conrod_winit", version = "0.62" }
2626
find_folder = "0.3.0"
2727
image = "0.19"

backends/conrod_glium/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ conrod_core = { path = "../../conrod_core", version = "0.62" }
2020
glium = { version = "0.23" }
2121

2222
[dev-dependencies]
23-
conrod_example_shared = { path = "../conrod_example_shared" }
23+
conrod_example_shared = { path = "../conrod_example_shared", version = "0.62" }
2424
conrod_winit = { path = "../conrod_winit", version = "0.62" }
2525
find_folder = "0.3.0"
2626
image = "0.20"

backends/conrod_piston/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pistoncore-input = "0.23.0"
2828
piston_window = "0.85"
2929

3030
[dev-dependencies]
31-
conrod_example_shared = { path = "../conrod_example_shared" }
31+
conrod_example_shared = { path = "../conrod_example_shared", version = "0.62" }
3232
find_folder = "0.3.0"
3333
image = "0.20"
3434
petgraph = "0.4"

backends/conrod_vulkano/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ vulkano = "0.11"
2222
vulkano-shaders = "0.11"
2323

2424
[dev-dependencies]
25-
conrod_example_shared = { path = "../conrod_example_shared" }
25+
conrod_example_shared = { path = "../conrod_example_shared", version = "0.62" }
2626
conrod_winit = { path = "../conrod_winit", version = "0.62" }
2727
find_folder = "0.3"
2828
image = "0.20"

0 commit comments

Comments
 (0)