Skip to content

Commit

Permalink
Set branch to 0.16 for gtk-rs-core crates
Browse files Browse the repository at this point in the history
  • Loading branch information
bilelmoussaoui committed Oct 19, 2022
1 parent d6bf77c commit 7c76d1e
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 19 deletions.
4 changes: 2 additions & 2 deletions gdk4-wayland/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ features = ["dox"]
[dependencies]
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.5.0"}
gdk = {path = "../gdk4", package = "gdk4", version = "0.5.0"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
libc = "0.2"
wayland-client = {version = "0.30.0-beta.10", optional = true}
wayland-backend = {version = "0.1.0-beta.10", optional = true, features = ["client_system"]}
Expand Down
1 change: 1 addition & 0 deletions gdk4-wayland/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ libc = "0.2"
package = "glib-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[build-dependencies]
system-deps = "6"
Expand Down
4 changes: 2 additions & 2 deletions gdk4-x11/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ features = ["dox"]
[dependencies]
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.5.0"}
gdk = {path = "../gdk4", package = "gdk4", version = "0.5.0"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
libc = "0.2"
x11 = {version = "2.20", optional = true }
khronos-egl = {version = "4.1", optional = true}
Expand Down
1 change: 1 addition & 0 deletions gdk4-x11/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ version = "0.5.0"
package = "glib-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[build-dependencies]
system-deps = "6"
Expand Down
10 changes: 5 additions & 5 deletions gdk4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ features = ["dox"]

[dependencies]
bitflags = "1.0"
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16"}
ffi = {package = "gdk4-sys", path = "./sys", version = "0.5.0"}
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
libc = "0.2"
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v1_46"]}
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v1_46"]}

[dev-dependencies]
gir-format-check = "^0.1"
6 changes: 6 additions & 0 deletions gdk4/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,31 +46,37 @@ libc = "0.2"
package = "cairo-sys-rs"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gdk_pixbuf]
package = "gdk-pixbuf-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gio]
package = "gio-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.glib]
package = "glib-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gobject]
package = "gobject-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.pango]
package = "pango-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[build-dependencies]
system-deps = "6"
Expand Down
8 changes: 4 additions & 4 deletions gsk4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ features = ["dox"]

[dependencies]
bitflags = "1.0"
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16"}
ffi = {package = "gsk4-sys", path = "./sys", version = "0.5.0"}
gdk = {package = "gdk4", path = "../gdk4", version = "0.5.0"}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16"}
libc = "0.2"
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v1_46"]}
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v1_46"]}

[dev-dependencies]
gir-format-check = "^0.1"
5 changes: 5 additions & 0 deletions gsk4/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ libc = "0.2"
package = "cairo-sys-rs"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gdk]
package = "gdk4-sys"
Expand All @@ -52,21 +53,25 @@ version = "0.5.0"
package = "glib-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gobject]
package = "gobject-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.graphene]
package = "graphene-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.pango]
package = "pango-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[build-dependencies]
system-deps = "6"
Expand Down
12 changes: 6 additions & 6 deletions gtk4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ features = ["dox"]

[dependencies]
bitflags = "1.0"
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16"}
ffi = {package = "gtk4-sys", path = "./sys", version = "0.5.0"}
field-offset = "0.3"
futures-channel = "0.3"
gdk = {package = "gdk4", path = "../gdk4", version = "0.5.0"}
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v2_66"]}
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16"}
gsk = {package = "gsk4", path = "../gsk4", version = "0.5.0"}
gtk4-macros = {path = "../gtk4-macros", version = "0.5.0"}
libc = "0.2"
once_cell = "1.0"
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v1_46"]}
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16", features = ["v1_46"]}

[dev-dependencies]
gir-format-check = "^0.1"
7 changes: 7 additions & 0 deletions gtk4/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,13 @@ libc = "0.2"
package = "cairo-sys-rs"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gdk_pixbuf]
package = "gdk-pixbuf-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gdk]
package = "gdk4-sys"
Expand All @@ -70,21 +72,25 @@ version = "0.5.0"
package = "gio-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.glib]
package = "glib-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gobject]
package = "gobject-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.graphene]
package = "graphene-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.gsk]
package = "gsk4-sys"
Expand All @@ -95,6 +101,7 @@ version = "0.5.0"
package = "pango-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[build-dependencies]
system-deps = "6"
Expand Down

0 comments on commit 7c76d1e

Please sign in to comment.