Skip to content

Commit 277034d

Browse files
use released version of gtk-rs-core crates
1 parent f7a5e03 commit 277034d

File tree

10 files changed

+41
-41
lines changed

10 files changed

+41
-41
lines changed

gdk4-wayland/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ features = ["dox"]
2020
[dependencies]
2121
ffi = {path = "./sys", package = "gdk4-wayland-sys"}
2222
gdk = {path = "../gdk4", package = "gdk4"}
23-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
24-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
23+
gio = {version = "0.14", features = ["v2_66"]}
24+
glib = {version = "0.14", features = ["v2_66"]}
2525
libc = "0.2"
2626
wayland-client = {version = "0.28", features = ["use_system_lib"]}
2727

gdk4-wayland/sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["The gtk-rs Project Developers"]
33
build = "build.rs"
44
description = "FFI bindings of GDK4 Wayland"
5-
documentation = "https://gtk-rs.org/gtk4-rs/git/docs/gdk4_wayland_sys/"
5+
documentation = "https://gtk-rs.org/gtk4-rs/stable/latest/docs/gdk4_wayland_sys/"
66
edition = "2018"
77
homepage = "http://gtk-rs.org/"
88
keywords = ["gdk4", "gdk4-wayland", "ffi", "gtk-rs", "gnome"]
@@ -26,7 +26,7 @@ dox = []
2626
libc = "0.2"
2727

2828
[dependencies.glib-sys]
29-
git = "https://github.com/gtk-rs/gtk-rs-core.git"
29+
version = "0.14"
3030

3131
[build-dependencies]
3232
system-deps = "3"

gdk4-x11/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ features = ["dox"]
2020
[dependencies]
2121
ffi = {path = "./sys", package = "gdk4-x11-sys"}
2222
gdk = {path = "../gdk4", package = "gdk4"}
23-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
24-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
23+
gio = {version = "0.14", features = ["v2_66"]}
24+
glib = {version = "0.14", features = ["v2_66"]}
2525
libc = "0.2"
2626
x11 = "2.18"
2727

gdk4-x11/sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ x11 = "2.18"
3030
path = "../../gdk4/sys"
3131

3232
[dependencies.glib-sys]
33-
git = "https://github.com/gtk-rs/gtk-rs-core.git"
33+
version = "0.14"
3434

3535
[build-dependencies]
3636
system-deps = "3"

gdk4/Cargo.toml

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

2424
[dependencies]
2525
bitflags = "1.0"
26-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core"}
26+
cairo-rs = "0.14"
2727
ffi = {package = "gdk4-sys", path = "./sys"}
28-
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core"}
29-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
30-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
28+
gdk-pixbuf = "0.14"
29+
gio = {version = "0.14", features = ["v2_66"]}
30+
glib = {version = "0.14", features = ["v2_66"]}
3131
libc = "0.2"
32-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v1_46"]}
32+
pango = {version = "0.14", features = ["v1_46"]}
3333

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

gdk4/sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,25 @@ v4_2 = []
3030
libc = "0.2"
3131

3232
[dependencies.cairo-sys-rs]
33-
git = "https://github.com/gtk-rs/gtk-rs-core"
33+
version = "0.14"
3434

3535
[dependencies.gdk-pixbuf-sys]
36-
git = "https://github.com/gtk-rs/gtk-rs-core"
36+
version = "0.14"
3737

3838
[dependencies.gio-sys]
39-
git = "https://github.com/gtk-rs/gtk-rs-core"
39+
version = "0.14"
4040

4141
[dependencies.glib-sys]
42-
git = "https://github.com/gtk-rs/gtk-rs-core"
42+
version = "0.14"
4343

4444
[dependencies.gobject-sys]
45-
git = "https://github.com/gtk-rs/gtk-rs-core"
45+
version = "0.14"
4646

4747
[dependencies.graphene-sys]
48-
git = "https://github.com/gtk-rs/gtk-rs-core"
48+
version = "0.14"
4949

5050
[dependencies.pango-sys]
51-
git = "https://github.com/gtk-rs/gtk-rs-core"
51+
version = "0.14"
5252

5353
[build-dependencies]
5454
system-deps = "3"

gsk4/Cargo.toml

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

2626
[dependencies]
2727
bitflags = "1.0"
28-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core"}
28+
cairo-rs = "0.14"
2929
ffi = {package = "gsk4-sys", path = "./sys"}
3030
gdk = {package = "gdk4", path = "../gdk4"}
31-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
32-
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core"}
31+
glib = {version = "0.14", features = ["v2_66"]}
32+
graphene = {package = "graphene-rs", version = "0.14"}
3333
libc = "0.2"
34-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v1_46"]}
34+
pango = {version = "0.14", features = ["v1_46"]}
3535

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

gsk4/sys/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@ v4_2 = []
3030
libc = "0.2"
3131

3232
[dependencies.cairo-sys-rs]
33-
git = "https://github.com/gtk-rs/gtk-rs-core"
33+
version = "0.14"
3434

3535
[dependencies.gdk4-sys]
3636
path = "../../gdk4/sys"
3737

3838
[dependencies.glib-sys]
39-
git = "https://github.com/gtk-rs/gtk-rs-core"
39+
version = "0.14"
4040

4141
[dependencies.gobject-sys]
42-
git = "https://github.com/gtk-rs/gtk-rs-core"
42+
version = "0.14"
4343

4444
[dependencies.graphene-sys]
45-
git = "https://github.com/gtk-rs/gtk-rs-core"
45+
version = "0.14"
4646

4747
[dependencies.pango-sys]
48-
git = "https://github.com/gtk-rs/gtk-rs-core"
48+
version = "0.14"
4949

5050
[build-dependencies]
5151
system-deps = "3"

gtk4/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ features = ["dox"]
2424

2525
[dependencies]
2626
bitflags = "1.0"
27-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core"}
27+
cairo-rs = "0.14"
2828
ffi = {package = "gtk4-sys", path = "./sys"}
2929
field-offset = "0.3"
3030
futures-channel = "0.3"
3131
gdk = {package = "gdk4", path = "../gdk4"}
32-
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core"}
33-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
34-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
35-
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core"}
32+
gdk-pixbuf = "0.14"
33+
gio = {version = "0.14", features = ["v2_66"]}
34+
glib = {version = "0.14", features = ["v2_66"]}
35+
graphene = {package = "graphene-rs", version = "0.14"}
3636
gsk = {package = "gsk4", path = "../gsk4"}
3737
gtk4-macros = {path = "../gtk4-macros"}
3838
libc = "0.2"
3939
once_cell = "1.0"
40-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v1_46"]}
40+
pango = {version = "0.14", features = ["v1_46"]}
4141

4242
[dev-dependencies]
4343
gir-format-check = "^0.1"

gtk4/sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,31 +31,31 @@ v4_2 = []
3131
libc = "0.2"
3232

3333
[dependencies.cairo-sys-rs]
34-
git = "https://github.com/gtk-rs/gtk-rs-core"
34+
version = "0.14"
3535

3636
[dependencies.gdk-pixbuf-sys]
37-
git = "https://github.com/gtk-rs/gtk-rs-core"
37+
version = "0.14"
3838

3939
[dependencies.gdk4-sys]
4040
path = "../../gdk4/sys"
4141

4242
[dependencies.gio-sys]
43-
git = "https://github.com/gtk-rs/gtk-rs-core"
43+
version = "0.14"
4444

4545
[dependencies.glib-sys]
46-
git = "https://github.com/gtk-rs/gtk-rs-core"
46+
version = "0.14"
4747

4848
[dependencies.gobject-sys]
49-
git = "https://github.com/gtk-rs/gtk-rs-core"
49+
version = "0.14"
5050

5151
[dependencies.graphene-sys]
52-
git = "https://github.com/gtk-rs/gtk-rs-core"
52+
version = "0.14"
5353

5454
[dependencies.gsk4-sys]
5555
path = "../../gsk4/sys"
5656

5757
[dependencies.pango-sys]
58-
git = "https://github.com/gtk-rs/gtk-rs-core"
58+
version = "0.14"
5959

6060
[build-dependencies]
6161
system-deps = "3"

0 commit comments

Comments
 (0)