Skip to content

Commit ec139db

Browse files
committed
Track 0.17 branch of gtk-rs-core
1 parent b0cfcd1 commit ec139db

File tree

12 files changed

+43
-19
lines changed

12 files changed

+43
-19
lines changed

gdk4-wayland/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ features = ["dox"]
2525
[dependencies]
2626
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.6"}
2727
gdk = {path = "../gdk4", package = "gdk4", version = "0.6"}
28-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v2_66"]}
29-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v2_66"]}
28+
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v2_66"]}
29+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v2_66"]}
3030
libc = "0.2"
3131
wayland-client = {version = "0.30.0", optional = true}
3232
wayland-backend = {version = "0.1.0", optional = true, features = ["client_system"]}

gdk4-wayland/sys/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ libc = "0.2"
3535
[dependencies.glib]
3636
package = "glib-sys"
3737
git = "https://github.com/gtk-rs/gtk-rs-core"
38+
branch = "0.17"
3839
version = "0.17"
3940

4041
[build-dependencies]

gdk4-win32/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@ version = "0.6"
4646

4747
[dependencies.gio]
4848
git = "https://github.com/gtk-rs/gtk-rs-core"
49+
branch = "0.17"
4950
version = "0.17"
5051
features = ["v2_66"]
5152

5253
[dependencies.glib]
5354
git = "https://github.com/gtk-rs/gtk-rs-core"
55+
branch = "0.17"
5456
version = "0.17"
5557
features = ["v2_66"]
5658

gdk4-win32/sys/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,13 @@ version = "0.6"
4444
[dependencies.glib]
4545
package = "glib-sys"
4646
git = "https://github.com/gtk-rs/gtk-rs-core.git"
47+
branch = "0.17"
4748
version = "0.17"
4849

4950
[dependencies.gdk-pixbuf]
5051
package = "gdk-pixbuf-sys"
5152
git = "https://github.com/gtk-rs/gtk-rs-core"
53+
branch = "0.17"
5254
version = "0.17"
5355

5456
[build-dependencies]

gdk4-x11/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ features = ["dox"]
2323
[dependencies]
2424
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.6"}
2525
gdk = {path = "../gdk4", package = "gdk4", version = "0.6"}
26-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v2_66"]}
27-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v2_66"]}
26+
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v2_66"]}
27+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v2_66"]}
2828
libc = "0.2"
2929
x11 = {version = "2.20", optional = true }
3030
khronos-egl = {version = "4.1", optional = true}

gdk4-x11/sys/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ version = "0.6"
4040
[dependencies.glib]
4141
package = "glib-sys"
4242
git = "https://github.com/gtk-rs/gtk-rs-core"
43+
branch = "0.17"
4344
version = "0.17"
4445

4546
[build-dependencies]

gdk4/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ features = ["dox"]
2727

2828
[dependencies]
2929
bitflags = "1.0"
30-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17"}
30+
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17"}
3131
ffi = {package = "gdk4-sys", path = "./sys", version = "0.6"}
32-
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17"}
33-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v2_66"]}
34-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v2_66"]}
32+
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17"}
33+
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v2_66"]}
34+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v2_66"]}
3535
libc = "0.2"
36-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v1_46"]}
36+
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v1_46"]}
3737

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

gdk4/sys/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,31 +51,37 @@ libc = "0.2"
5151
[dependencies.cairo]
5252
package = "cairo-sys-rs"
5353
git = "https://github.com/gtk-rs/gtk-rs-core"
54+
branch = "0.17"
5455
version = "0.17"
5556

5657
[dependencies.gdk_pixbuf]
5758
package = "gdk-pixbuf-sys"
5859
git = "https://github.com/gtk-rs/gtk-rs-core"
60+
branch = "0.17"
5961
version = "0.17"
6062

6163
[dependencies.gio]
6264
package = "gio-sys"
6365
git = "https://github.com/gtk-rs/gtk-rs-core"
66+
branch = "0.17"
6467
version = "0.17"
6568

6669
[dependencies.glib]
6770
package = "glib-sys"
6871
git = "https://github.com/gtk-rs/gtk-rs-core"
72+
branch = "0.17"
6973
version = "0.17"
7074

7175
[dependencies.gobject]
7276
package = "gobject-sys"
7377
git = "https://github.com/gtk-rs/gtk-rs-core"
78+
branch = "0.17"
7479
version = "0.17"
7580

7681
[dependencies.pango]
7782
package = "pango-sys"
7883
git = "https://github.com/gtk-rs/gtk-rs-core"
84+
branch = "0.17"
7985
version = "0.17"
8086

8187
[build-dependencies]

gsk4/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ features = ["dox"]
2626

2727
[dependencies]
2828
bitflags = "1.0"
29-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17"}
29+
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17"}
3030
ffi = {package = "gsk4-sys", path = "./sys", version = "0.6"}
3131
gdk = {package = "gdk4", path = "../gdk4", version = "0.6"}
32-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v2_66"]}
33-
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17"}
32+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v2_66"]}
33+
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17"}
3434
libc = "0.2"
35-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.17", features = ["v1_46"]}
35+
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.17", version = "0.17", features = ["v1_46"]}
3636

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

gsk4/sys/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ libc = "0.2"
4343
[dependencies.cairo]
4444
package = "cairo-sys-rs"
4545
git = "https://github.com/gtk-rs/gtk-rs-core"
46+
branch = "0.17"
4647
version = "0.17"
4748

4849
[dependencies.gdk]
@@ -53,21 +54,25 @@ version = "0.6"
5354
[dependencies.glib]
5455
package = "glib-sys"
5556
git = "https://github.com/gtk-rs/gtk-rs-core"
57+
branch = "0.17"
5658
version = "0.17"
5759

5860
[dependencies.gobject]
5961
package = "gobject-sys"
6062
git = "https://github.com/gtk-rs/gtk-rs-core"
63+
branch = "0.17"
6164
version = "0.17"
6265

6366
[dependencies.graphene]
6467
package = "graphene-sys"
6568
git = "https://github.com/gtk-rs/gtk-rs-core"
69+
branch = "0.17"
6670
version = "0.17"
6771

6872
[dependencies.pango]
6973
package = "pango-sys"
7074
git = "https://github.com/gtk-rs/gtk-rs-core"
75+
branch = "0.17"
7176
version = "0.17"
7277

7378
[build-dependencies]

0 commit comments

Comments
 (0)