Skip to content

Commit 687112a

Browse files
Merge pull request #1239 from mitchmindtree/publish
Cargo.toml tweaks for publishing of 0.62.0
2 parents 3e99226 + 36c5c40 commit 687112a

File tree

7 files changed

+29
-14
lines changed

7 files changed

+29
-14
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ authors = ["Mitchell Nordine <[email protected]>"]
55
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
66
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
77
license = "MIT OR Apache-2.0"
8-
readme = "README.md"
8+
readme = "../../README.md"
99
repository = "https://github.com/pistondevelopers/conrod.git"
1010
homepage = "https://github.com/pistondevelopers/conrod"
11-
documentation = "http://docs.piston.rs/conrod/conrod/"
11+
documentation = "https://docs.rs/conrod"
1212
categories = ["gui"]
1313

1414
[lib]
@@ -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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ authors = ["Mitchell Nordine <[email protected]>"]
55
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
66
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
77
license = "MIT OR Apache-2.0"
8-
readme = "README.md"
8+
readme = "../../README.md"
99
repository = "https://github.com/pistondevelopers/conrod.git"
1010
homepage = "https://github.com/pistondevelopers/conrod"
11-
documentation = "http://docs.piston.rs/conrod/conrod/"
11+
documentation = "https://docs.rs/conrod"
1212
categories = ["gui"]
1313

1414
[lib]
@@ -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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ authors = [
88
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
99
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
1010
license = "MIT OR Apache-2.0"
11-
readme = "README.md"
11+
readme = "../../README.md"
1212
repository = "https://github.com/pistondevelopers/conrod.git"
1313
homepage = "https://github.com/pistondevelopers/conrod"
14-
documentation = "http://docs.piston.rs/conrod/conrod/"
14+
documentation = "https://docs.rs/conrod"
1515
categories = ["gui"]
1616

1717
[package.metadata.docs.rs]
@@ -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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ authors = [
66
"Kurble",
77
"Abendstolz",
88
]
9+
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
10+
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
11+
license = "MIT OR Apache-2.0"
12+
readme = "../../README.md"
13+
repository = "https://github.com/pistondevelopers/conrod.git"
14+
homepage = "https://github.com/pistondevelopers/conrod"
15+
documentation = "https://docs.rs/conrod"
16+
categories = ["gui"]
917
edition = "2018"
1018

1119
[dependencies]
@@ -14,7 +22,7 @@ vulkano = "0.11"
1422
vulkano-shaders = "0.11"
1523

1624
[dev-dependencies]
17-
conrod_example_shared = { path = "../conrod_example_shared" }
25+
conrod_example_shared = { path = "../conrod_example_shared", version = "0.62" }
1826
conrod_winit = { path = "../conrod_winit", version = "0.62" }
1927
find_folder = "0.3"
2028
image = "0.20"

backends/conrod_winit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ authors = [
88
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
99
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
1010
license = "MIT OR Apache-2.0"
11-
readme = "README.md"
11+
readme = "../../README.md"
1212
repository = "https://github.com/pistondevelopers/conrod.git"
1313
homepage = "https://github.com/pistondevelopers/conrod"
14-
documentation = "http://docs.piston.rs/conrod/conrod/"
14+
documentation = "https://docs.rs/conrod"
1515
categories = ["gui"]
1616

1717
[lib]

conrod_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
99
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
1010
license = "MIT OR Apache-2.0"
11-
readme = "README.md"
11+
readme = "../README.md"
1212
repository = "https://github.com/pistondevelopers/conrod.git"
1313
homepage = "https://github.com/pistondevelopers/conrod"
1414
documentation = "http://docs.piston.rs/conrod/conrod/"

0 commit comments

Comments
 (0)