Skip to content

Commit

Permalink
fix: use sys prefix for package names
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Apr 16, 2024
1 parent 3bbea3d commit e1399a1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 30 deletions.
16 changes: 6 additions & 10 deletions fusebox/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,38 +28,34 @@ name = "fusebox_sys"
[dependencies]
libc = "0.2"

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

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

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

[dependencies.gtk]
[dependencies.gtk-sys]
package = "gtk4-sys"
git = "https://github.com/gtk-rs/gtk4-rs"
version = "0.9"
branch = "master"

[dependencies.gdk]
[dependencies.gdk-sys]
package = "gdk4-sys"
git = "https://github.com/gtk-rs/gtk4-rs"
version = "0.9"
branch = "master"

[dependencies.pango]
package = "pango-sys"
[dependencies.pango-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.20"
branch = "master"
Expand Down
16 changes: 6 additions & 10 deletions libbismuth/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,38 +31,34 @@ name = "libbismuth_sys"
[dependencies]
libc = "0.2"

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

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

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

[dependencies.gtk]
[dependencies.gtk-sys]
package = "gtk4-sys"
git = "https://github.com/gtk-rs/gtk4-rs"
version = "0.9"
branch = "master"

[dependencies.gdk]
[dependencies.gdk-sys]
package = "gdk4-sys"
git = "https://github.com/gtk-rs/gtk4-rs"
version = "0.9"
branch = "master"

[dependencies.pango]
package = "pango-sys"
[dependencies.pango-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.20"
branch = "master"
Expand Down
16 changes: 6 additions & 10 deletions libhelium/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,38 +52,34 @@ name = "libhelium_sys"
[dependencies]
libc = "0.2"

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

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

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

[dependencies.gtk_sys]
[dependencies.gtk-sys]
package = "gtk4-sys"
git = "https://github.com/gtk-rs/gtk4-rs"
branch = "master"
version = "0.9"

[dependencies.gdk_sys]
[dependencies.gdk-sys]
package = "gdk4-sys"
git = "https://github.com/gtk-rs/gtk4-rs"
branch = "master"
version = "0.9"

[dependencies.pango_sys]
package = "pango-sys"
[dependencies.pango-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
branch = "master"
version = "0.20"
Expand Down

0 comments on commit e1399a1

Please sign in to comment.