Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit 4343aed

Browse files
authored
Merge pull request #806 from GuillaumeGomez/update
Update crates version
2 parents 23c4dfb + e58c784 commit 4343aed

File tree

12 files changed

+65
-21
lines changed

12 files changed

+65
-21
lines changed

atk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ features = ["dox"]
3131
libc = "0.2"
3232
bitflags = "1.0"
3333
ffi = { package = "atk-sys", path = "sys" }
34-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
34+
glib = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
3535

3636
[dev-dependencies]
3737
gir-format-check = "^0.1"

atk/sys/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ libc = "0.2"
66

77
[dependencies.glib]
88
package = "glib-sys"
9+
version = "0.17"
10+
branch = "0.17"
911
git = "https://github.com/gtk-rs/gtk-rs-core"
1012

1113
[dependencies.gobject]
1214
package = "gobject-sys"
15+
version = "0.17"
16+
branch = "0.17"
1317
git = "https://github.com/gtk-rs/gtk-rs-core"
1418

1519
[dev-dependencies]

examples/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,30 @@ futures-util = "0.3"
1111
once_cell = "1.2.0"
1212

1313
[dependencies.glib]
14+
version = "0.17"
15+
branch = "0.17"
1416
git = "https://github.com/gtk-rs/gtk-rs-core"
1517

1618
[dependencies.gtk]
1719
path = "../gtk"
1820

1921
[dependencies.pangocairo]
22+
version = "0.17"
23+
branch = "0.17"
2024
git = "https://github.com/gtk-rs/gtk-rs-core"
2125
optional = true
2226

2327
[dependencies.cairo]
2428
package = "cairo-rs"
29+
version = "0.17"
30+
branch = "0.17"
2531
git = "https://github.com/gtk-rs/gtk-rs-core"
2632
features = ["png"]
2733
optional = true
2834

2935
[build-dependencies.glib-build-tools]
36+
version = "0.17"
37+
branch = "0.17"
3038
git = "https://github.com/gtk-rs/gtk-rs-core"
3139

3240
[[bin]]

gdk/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ features = ["dox"]
3030
libc = "0.2"
3131
bitflags = "1.0"
3232
ffi = { package = "gdk-sys", path = "sys" }
33-
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
34-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
35-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
36-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
37-
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
33+
cairo-rs = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
34+
gdk-pixbuf = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
35+
gio = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
36+
glib = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
37+
pango = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
3838

3939
[dev-dependencies]
4040
gir-format-check = "^0.1"

gdk/sys/Cargo.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,38 @@ libc = "0.2"
77

88
[dependencies.cairo]
99
package = "cairo-sys-rs"
10+
version = "0.17"
11+
branch = "0.17"
1012
git = "https://github.com/gtk-rs/gtk-rs-core"
1113

1214
[dependencies.gdk_pixbuf]
1315
package = "gdk-pixbuf-sys"
16+
version = "0.17"
17+
branch = "0.17"
1418
git = "https://github.com/gtk-rs/gtk-rs-core"
1519

1620
[dependencies.gio]
1721
package = "gio-sys"
22+
version = "0.17"
23+
branch = "0.17"
1824
git = "https://github.com/gtk-rs/gtk-rs-core"
1925

2026
[dependencies.glib]
2127
package = "glib-sys"
28+
version = "0.17"
29+
branch = "0.17"
2230
git = "https://github.com/gtk-rs/gtk-rs-core"
2331

2432
[dependencies.gobject]
2533
package = "gobject-sys"
34+
version = "0.17"
35+
branch = "0.17"
2636
git = "https://github.com/gtk-rs/gtk-rs-core"
2737

2838
[dependencies.pango]
2939
package = "pango-sys"
40+
version = "0.17"
41+
branch = "0.17"
3042
git = "https://github.com/gtk-rs/gtk-rs-core"
3143

3244
[dev-dependencies]

gdkwayland/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ dox = ["ffi/dox", "gdk/dox", "glib/dox"]
2121
features = ["dox"]
2222

2323
[dependencies]
24-
ffi = { path = "./sys", package = "gdkwayland-sys" }
25-
gdk = { path = "../gdk" }
26-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
24+
ffi = { version = "0.17", path = "./sys", package = "gdkwayland-sys" }
25+
gdk = { version = "0.17", path = "../gdk" }
26+
glib = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
2727
libc = "0.2"
2828
wayland-client = "0.30"
2929
wayland-backend = { version = "0.1", features = ["client_system"] }

gdkwayland/sys/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@ libc = "0.2"
2323

2424
[dependencies.glib]
2525
package = "glib-sys"
26+
version = "0.17"
27+
branch = "0.17"
2628
git = "https://github.com/gtk-rs/gtk-rs-core"
2729

2830
[dependencies.gobject]
2931
package = "gobject-sys"
32+
version = "0.17"
33+
branch = "0.17"
3034
git = "https://github.com/gtk-rs/gtk-rs-core"
3135

3236
[dependencies.gdk]

gdkx11/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ features = ["dox"]
2727
libc = "0.2"
2828
x11 = "2.18"
2929
ffi = { package = "gdkx11-sys", path = "sys" }
30-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
31-
gdk = { path = "../gdk" }
32-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
30+
glib = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
31+
gdk = { version = "0.17", path = "../gdk" }
32+
gio = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
3333

3434
[dev-dependencies]
3535
gir-format-check = "^0.1"

gdkx11/sys/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,14 @@ path = "../../gdk/sys"
3737

3838
[dependencies.glib]
3939
package = "glib-sys"
40+
version = "0.17"
41+
branch = "0.17"
4042
git = "https://github.com/gtk-rs/gtk-rs-core"
4143

4244
[dependencies.cairo]
4345
package = "cairo-sys-rs"
46+
version = "0.17"
47+
branch = "0.17"
4448
git = "https://github.com/gtk-rs/gtk-rs-core"
4549
optional = true
4650

gtk/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ bitflags = "1.0"
5050
field-offset = "0.3"
5151
futures-channel = "0.3"
5252
once_cell = "1.0"
53-
atk = { path = "../atk" }
53+
atk = { version = "0.17", path = "../atk" }
5454
ffi = { package = "gtk-sys", path = "sys" }
55-
gtk3-macros = { path = "../gtk3-macros" }
56-
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
57-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
58-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
59-
gdk = { path = "../gdk" }
60-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
61-
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
55+
gtk3-macros = { version = "0.17", path = "../gtk3-macros" }
56+
cairo-rs = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
57+
gio = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
58+
glib = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
59+
gdk = { version = "0.17", path = "../gdk" }
60+
gdk-pixbuf = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
61+
pango = { branch = "0.17", version = "0.17", git = "https://github.com/gtk-rs/gtk-rs-core" }
6262

6363
[dev-dependencies]
6464
gir-format-check = "^0.1"

0 commit comments

Comments
 (0)