Skip to content

Commit

Permalink
use released version of gtk4-rs crates
Browse files Browse the repository at this point in the history
  • Loading branch information
bilelmoussaoui committed Jul 12, 2021
1 parent 277034d commit 24753a0
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
4 changes: 2 additions & 2 deletions gdk4-wayland/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dox = ["ffi/dox"]
features = ["dox"]

[dependencies]
ffi = {path = "./sys", package = "gdk4-wayland-sys"}
gdk = {path = "../gdk4", package = "gdk4"}
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.2.0"}
gdk = {path = "../gdk4", package = "gdk4", version = "0.2.0"}
gio = {version = "0.14", features = ["v2_66"]}
glib = {version = "0.14", features = ["v2_66"]}
libc = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions gdk4-x11/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dox = ["ffi/dox"]
features = ["dox"]

[dependencies]
ffi = {path = "./sys", package = "gdk4-x11-sys"}
gdk = {path = "../gdk4", package = "gdk4"}
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.2.0"}
gdk = {path = "../gdk4", package = "gdk4", version = "0.2.0"}
gio = {version = "0.14", features = ["v2_66"]}
glib = {version = "0.14", features = ["v2_66"]}
libc = "0.2"
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 @@ -28,6 +28,7 @@ x11 = "2.18"

[dependencies.gdk4-sys]
path = "../../gdk4/sys"
version = "0.2.0"

[dependencies.glib-sys]
version = "0.14"
Expand Down
2 changes: 1 addition & 1 deletion gdk4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ features = ["dox"]
[dependencies]
bitflags = "1.0"
cairo-rs = "0.14"
ffi = {package = "gdk4-sys", path = "./sys"}
ffi = {package = "gdk4-sys", path = "./sys", version = "0.2.0"}
gdk-pixbuf = "0.14"
gio = {version = "0.14", features = ["v2_66"]}
glib = {version = "0.14", features = ["v2_66"]}
Expand Down
4 changes: 2 additions & 2 deletions gsk4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ features = ["dox"]
[dependencies]
bitflags = "1.0"
cairo-rs = "0.14"
ffi = {package = "gsk4-sys", path = "./sys"}
gdk = {package = "gdk4", path = "../gdk4"}
ffi = {package = "gsk4-sys", path = "./sys", version = "0.2.0"}
gdk = {package = "gdk4", path = "../gdk4", version = "0.2.0"}
glib = {version = "0.14", features = ["v2_66"]}
graphene = {package = "graphene-rs", version = "0.14"}
libc = "0.2"
Expand Down
1 change: 1 addition & 0 deletions gsk4/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ version = "0.14"

[dependencies.gdk4-sys]
path = "../../gdk4/sys"
version = "0.2.0"

[dependencies.glib-sys]
version = "0.14"
Expand Down
8 changes: 4 additions & 4 deletions gtk4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ features = ["dox"]
[dependencies]
bitflags = "1.0"
cairo-rs = "0.14"
ffi = {package = "gtk4-sys", path = "./sys"}
ffi = {package = "gtk4-sys", path = "./sys", version = "0.2.0"}
field-offset = "0.3"
futures-channel = "0.3"
gdk = {package = "gdk4", path = "../gdk4"}
gdk = {package = "gdk4", path = "../gdk4", version = "0.2.0"}
gdk-pixbuf = "0.14"
gio = {version = "0.14", features = ["v2_66"]}
glib = {version = "0.14", features = ["v2_66"]}
graphene = {package = "graphene-rs", version = "0.14"}
gsk = {package = "gsk4", path = "../gsk4"}
gtk4-macros = {path = "../gtk4-macros"}
gsk = {package = "gsk4", path = "../gsk4", version = "0.2.0"}
gtk4-macros = {path = "../gtk4-macros", version = "0.2.0"}
libc = "0.2"
once_cell = "1.0"
pango = {version = "0.14", features = ["v1_46"]}
Expand Down
2 changes: 2 additions & 0 deletions gtk4/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ version = "0.14"

[dependencies.gdk4-sys]
path = "../../gdk4/sys"
version = "0.2.0"

[dependencies.gio-sys]
version = "0.14"
Expand All @@ -53,6 +54,7 @@ version = "0.14"

[dependencies.gsk4-sys]
path = "../../gsk4/sys"
version = "0.2.0"

[dependencies.pango-sys]
version = "0.14"
Expand Down

0 comments on commit 24753a0

Please sign in to comment.