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

Commit

Permalink
Update Cargo.toml files for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jul 29, 2023
1 parent 41d7fec commit d78b289
Show file tree
Hide file tree
Showing 11 changed files with 65 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 @@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]

[dependencies]
libc = "0.2"
ffi = { package = "atk-sys", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
ffi = { package = "atk-sys", version = "0.18", path = "sys" }
glib = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }

[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 @@ -6,10 +6,14 @@ libc = "0.2"

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

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

[dev-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions gdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]

[dependencies]
libc = "0.2"
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", version = "0.18", path = "sys" }
cairo-rs = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
gdk-pixbuf = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
gio = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
glib = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
pango = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }

[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 @@ -7,26 +7,38 @@ libc = "0.2"

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

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

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

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

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

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

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions gdkwayland/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ v3_24_22 = ["v3_24", "ffi/v3_24_22"]
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]

[dependencies]
ffi = { path = "./sys", package = "gdkwayland-sys" }
gdk = { path = "../gdk" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
ffi = { version = "0.18", path = "./sys", package = "gdkwayland-sys" }
gdk = { version = "0.18", path = "../gdk" }
glib = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
libc = "0.2"
wayland-client = "0.30"
wayland-backend = { version = "0.1", features = ["client_system"] }
Expand Down
5 changes: 5 additions & 0 deletions gdkwayland/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,19 @@ libc = "0.2"

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

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

[dependencies.gdk]
package = "gdk-sys"
version = "0.18"
path = "../../gdk/sys"

[build-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions gdkx11/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
[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", version = "0.18", path = "sys" }
glib = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
gdk = { version = "0.18", path = "../gdk" }
gio = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }

[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 @@ -34,14 +34,19 @@ x11 = "2.18"

[dependencies.gdk]
package = "gdk-sys"
version = "0.18"
path = "../../gdk/sys"

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

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

Expand Down
18 changes: 9 additions & 9 deletions gtk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ pkg-config = "0.3.7"
libc = "0.2"
field-offset = "0.3"
futures-channel = "0.3"
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 = { version = "0.18", path = "../atk" }
ffi = { package = "gtk-sys", version = "0.18", path = "sys" }
gtk3-macros = { version = "0.18", path = "../gtk3-macros" }
cairo-rs = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
gio = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
glib = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
gdk = { version = "0.18", path = "../gdk" }
gdk-pixbuf = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }
pango = { branch = "0.18", version = "0.18", git = "https://github.com/gtk-rs/gtk-rs-core" }

[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 @@ -46,34 +46,48 @@ libc = "0.2"

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

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

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

[dependencies.atk]
package = "atk-sys"
version = "0.18"
path = "../../atk/sys"

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

[dependencies.gdk]
package = "gdk-sys"
version = "0.18"
path = "../../gdk/sys"

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

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

[build-dependencies]
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 = "2.0", features = ["full"] }
proc-macro-crate = "1.0"

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

0 comments on commit d78b289

Please sign in to comment.