Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
Ready crates for 0.16 release
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Oct 19, 2022
1 parent 7aca469 commit 1999fb8
Show file tree
Hide file tree
Showing 12 changed files with 73 additions and 25 deletions.
4 changes: 2 additions & 2 deletions atk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ features = ["dox"]
[dependencies]
libc = "0.2"
bitflags = "1.0"
ffi = { package = "atk-sys", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
ffi = { package = "atk-sys", path = "sys", version = "0.16" }
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }

[dev-dependencies]
gir-format-check = "^0.1"
4 changes: 4 additions & 0 deletions atk/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ libc = "0.2"
[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"

[dev-dependencies]
shell-words = "1.0.0"
Expand Down
8 changes: 8 additions & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,31 @@ futures-util = "0.3"
once_cell = "1.2.0"

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

[dependencies.gtk]
path = "../gtk"

[dependencies.pangocairo]
version = "0.16"
git = "https://github.com/gtk-rs/gtk-rs-core"
branch = "0.16"
optional = true

[dependencies.cairo]
package = "cairo-rs"
version = "0.16"
git = "https://github.com/gtk-rs/gtk-rs-core"
branch = "0.16"
features = ["png"]
optional = true

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

[[bin]]
name = "accessibility"
Expand Down
12 changes: 6 additions & 6 deletions gdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ features = ["dox"]
[dependencies]
libc = "0.2"
bitflags = "1.0"
ffi = { package = "gdk-sys", path = "sys" }
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
ffi = { package = "gdk-sys", path = "sys", version = "0.16" }
cairo-rs = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
gdk-pixbuf = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
gio = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
pango = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }

[dev-dependencies]
gir-format-check = "^0.1"
12 changes: 12 additions & 0 deletions gdk/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,38 @@ libc = "0.2"
[dependencies.cairo]
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"

[dev-dependencies]
shell-words = "1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions gdkwayland/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ dox = ["ffi/dox", "gdk/dox", "glib/dox"]
features = ["dox"]

[dependencies]
ffi = { path = "./sys", package = "gdkwayland-sys" }
gdk = { path = "../gdk" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
ffi = { path = "./sys", package = "gdkwayland-sys", version = "0.16" }
gdk = { path = "../gdk", version = "0.16" }
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
libc = "0.2"
wayland-client = { version = "0.29", features = ["use_system_lib"] }

Expand Down
5 changes: 5 additions & 0 deletions gdkwayland/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,19 @@ libc = "0.2"
[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.gdk]
package = "gdk-sys"
path = "../../gdk/sys"
version = "0.16"

[build-dependencies]
pkg-config = "0.3.7"
Expand Down
8 changes: 4 additions & 4 deletions gdkx11/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ features = ["dox"]
[dependencies]
libc = "0.2"
x11 = "2.18"
ffi = { package = "gdkx11-sys", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gdk = { path = "../gdk" }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
ffi = { package = "gdkx11-sys", path = "sys", version = "0.16" }
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
gdk = { path = "../gdk", version = "0.16" }
gio = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }

[dev-dependencies]
gir-format-check = "^0.1"
5 changes: 5 additions & 0 deletions gdkx11/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,20 @@ x11 = "2.18"
[dependencies.gdk]
package = "gdk-sys"
path = "../../gdk/sys"
version = "0.16"

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

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

[build-dependencies]
system-deps = "6"
Expand Down
18 changes: 9 additions & 9 deletions gtk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ bitflags = "1.0"
field-offset = "0.3"
futures-channel = "0.3"
once_cell = "1.0"
atk = { path = "../atk" }
ffi = { package = "gtk-sys", path = "sys" }
gtk3-macros = { path = "../gtk3-macros" }
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gdk = { path = "../gdk" }
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
atk = { path = "../atk", version = "0.16" }
ffi = { package = "gtk-sys", path = "sys", version = "0.16" }
gtk3-macros = { path = "../gtk3-macros", version = "0.16" }
cairo-rs = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
gio = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
gdk = { path = "../gdk", version = "0.16" }
gdk-pixbuf = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
pango = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }

[dev-dependencies]
gir-format-check = "^0.1"
14 changes: 14 additions & 0 deletions gtk/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,34 +44,48 @@ libc = "0.2"
[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.gio]
package = "gio-sys"
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.16"
branch = "0.16"

[dependencies.atk]
package = "atk-sys"
path = "../../atk/sys"
version = "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 = "gdk-sys"
path = "../../gdk/sys"
version = "0.16"

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

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

[build-dependencies]
system-deps = "6"
Expand Down
2 changes: 1 addition & 1 deletion gtk3-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ syn = { version = "1.0", default-features = false, features = ["full"] }
proc-macro-crate = "1.0"

[dev-dependencies]
gtk = { path = "../gtk" }
gtk = { path = "../gtk", version = "0.16" }

0 comments on commit 1999fb8

Please sign in to comment.