Skip to content

Commit 96a7725

Browse files
Set branch for gtk-rs-core crates
1 parent b22d2ab commit 96a7725

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
@@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
2828
[dependencies]
2929
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.7"}
3030
gdk = {path = "../gdk4", package = "gdk4", version = "0.7"}
31-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v2_66"]}
32-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v2_66"]}
31+
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v2_66"]}
32+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v2_66"]}
3333
libc = "0.2"
3434
wayland-client = {version = "0.30.0", optional = true}
3535
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
@@ -46,6 +46,7 @@ libc = "0.2"
4646
package = "glib-sys"
4747
git = "https://github.com/gtk-rs/gtk-rs-core"
4848
version = "0.18"
49+
branch = "0.18"
4950

5051
[build-dependencies]
5152
system-deps = "6"

gdk4-win32/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,13 @@ version = "0.7"
4848
[dependencies.gio]
4949
git = "https://github.com/gtk-rs/gtk-rs-core"
5050
version = "0.18"
51+
branch = "0.18"
5152
features = ["v2_66"]
5253

5354
[dependencies.glib]
5455
git = "https://github.com/gtk-rs/gtk-rs-core"
5556
version = "0.18"
57+
branch = "0.18"
5658
features = ["v2_66"]
5759

5860
[dev-dependencies]

gdk4-win32/sys/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,13 @@ version = "0.7"
4747
package = "glib-sys"
4848
git = "https://github.com/gtk-rs/gtk-rs-core.git"
4949
version = "0.18"
50+
branch = "0.18"
5051

5152
[dependencies.gdk-pixbuf]
5253
package = "gdk-pixbuf-sys"
5354
git = "https://github.com/gtk-rs/gtk-rs-core"
5455
version = "0.18"
56+
branch = "0.18"
5557

5658
[build-dependencies]
5759
system-deps = "6"

gdk4-x11/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
2525
[dependencies]
2626
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.7"}
2727
gdk = {path = "../gdk4", package = "gdk4", version = "0.7"}
28-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v2_66"]}
29-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v2_66"]}
28+
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v2_66"]}
29+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v2_66"]}
3030
libc = "0.2"
3131
x11 = {version = "2.20", optional = true }
3232
khronos-egl = {version = "5.0", optional = true}

gdk4-x11/sys/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ version = "0.7"
4747
package = "glib-sys"
4848
git = "https://github.com/gtk-rs/gtk-rs-core"
4949
version = "0.18"
50+
branch = "0.18"
5051

5152
[build-dependencies]
5253
system-deps = "6"

gdk4/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ rustc-args = ["--cfg", "docsrs"]
2929
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
3030

3131
[dependencies]
32-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18"}
32+
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18"}
3333
ffi = {package = "gdk4-sys", path = "./sys", version = "0.7"}
34-
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18"}
35-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v2_66"]}
36-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v2_66"]}
34+
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18"}
35+
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v2_66"]}
36+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v2_66"]}
3737
libc = "0.2"
38-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v1_46"]}
38+
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v1_46"]}
3939
gl = {version = "0.14", optional = true}
4040

4141
[dev-dependencies]

gdk4/sys/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,31 +58,37 @@ libc = "0.2"
5858
package = "cairo-sys-rs"
5959
git = "https://github.com/gtk-rs/gtk-rs-core"
6060
version = "0.18"
61+
branch = "0.18"
6162

6263
[dependencies.gdk_pixbuf]
6364
package = "gdk-pixbuf-sys"
6465
git = "https://github.com/gtk-rs/gtk-rs-core"
6566
version = "0.18"
67+
branch = "0.18"
6668

6769
[dependencies.gio]
6870
package = "gio-sys"
6971
git = "https://github.com/gtk-rs/gtk-rs-core"
7072
version = "0.18"
73+
branch = "0.18"
7174

7275
[dependencies.glib]
7376
package = "glib-sys"
7477
git = "https://github.com/gtk-rs/gtk-rs-core"
7578
version = "0.18"
79+
branch = "0.18"
7680

7781
[dependencies.gobject]
7882
package = "gobject-sys"
7983
git = "https://github.com/gtk-rs/gtk-rs-core"
8084
version = "0.18"
85+
branch = "0.18"
8186

8287
[dependencies.pango]
8388
package = "pango-sys"
8489
git = "https://github.com/gtk-rs/gtk-rs-core"
8590
version = "0.18"
91+
branch = "0.18"
8692

8793
[build-dependencies]
8894
system-deps = "6"

gsk4/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ rustc-args = ["--cfg", "docsrs"]
2828
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
2929

3030
[dependencies]
31-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18"}
31+
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18"}
3232
ffi = {package = "gsk4-sys", path = "./sys", version = "0.7"}
3333
gdk = {package = "gdk4", path = "../gdk4", version = "0.7"}
34-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v2_66"]}
35-
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18"}
34+
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v2_66"]}
35+
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18"}
3636
libc = "0.2"
37-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", features = ["v1_46"]}
37+
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.18", branch = "0.18", features = ["v1_46"]}
3838

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

gsk4/sys/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ libc = "0.2"
5252
package = "cairo-sys-rs"
5353
git = "https://github.com/gtk-rs/gtk-rs-core"
5454
version = "0.18"
55+
branch = "0.18"
5556

5657
[dependencies.gdk]
5758
package = "gdk4-sys"
@@ -62,21 +63,25 @@ version = "0.7"
6263
package = "glib-sys"
6364
git = "https://github.com/gtk-rs/gtk-rs-core"
6465
version = "0.18"
66+
branch = "0.18"
6567

6668
[dependencies.gobject]
6769
package = "gobject-sys"
6870
git = "https://github.com/gtk-rs/gtk-rs-core"
6971
version = "0.18"
72+
branch = "0.18"
7073

7174
[dependencies.graphene]
7275
package = "graphene-sys"
7376
git = "https://github.com/gtk-rs/gtk-rs-core"
7477
version = "0.18"
78+
branch = "0.18"
7579

7680
[dependencies.pango]
7781
package = "pango-sys"
7882
git = "https://github.com/gtk-rs/gtk-rs-core"
7983
version = "0.18"
84+
branch = "0.18"
8085

8186
[build-dependencies]
8287
system-deps = "6"

0 commit comments

Comments
 (0)