Compare commits

...

2 commits
master ... main

Author SHA1 Message Date
Aode 12924ef6d6 Play nice in outer workspace 2021-05-13 19:23:41 -05:00
Aode e56b247fea Update libhandy deps 2021-05-13 19:19:33 -05:00
3 changed files with 19 additions and 26 deletions

View file

@ -1,7 +0,0 @@
[workspace]
members = [
"libhandy",
"libhandy-sys",
]
exclude = ["gir"]

View file

@ -7,32 +7,32 @@ libc = "0.2"
[dependencies.gdk-pixbuf-sys]
version = "*"
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk-rs-core.git"
[dependencies.gdk-sys]
version = "*"
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk3-rs.git"
[dependencies.gio-sys]
version = "*"
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk-rs-core.git"
[dependencies.glib-sys]
version = "*"
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk-rs-core.git"
[dependencies.gobject-sys]
version = "*"
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk-rs-core.git"
[dependencies.gtk-sys]
version = "*"
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk3-rs.git"
features = ["v3_24"]
[dependencies.pango-sys]
version = "*"
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk-rs-core.git"
[dev-dependencies]
shell-words = "1.0.0"

View file

@ -23,21 +23,21 @@ libc = '0.2'
bitflags = '1.2'
lazy_static = '1.4'
gdk = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gdk-pixbuf = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gdk-pixbuf-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gdk-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gio = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gio-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
glib = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
glib-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gobject-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gtk-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
pango = { version = "*", git = "https://github.com/gtk-rs/gtk-rs.git" }
gdk = { version = "*", git = "https://github.com/gtk-rs/gtk3-rs.git" }
gdk-pixbuf = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
gdk-pixbuf-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
gdk-sys = { version = "*", git = "https://github.com/gtk-rs/gtk3-rs.git" }
gio = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
gio-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
glib = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
glib-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
gobject-sys = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
gtk-sys = { version = "*", git = "https://github.com/gtk-rs/gtk3-rs.git" }
pango = { version = "*", git = "https://github.com/gtk-rs/gtk-rs-core.git" }
[dependencies.gtk]
version = '*'
git = "https://github.com/gtk-rs/gtk-rs.git"
git = "https://github.com/gtk-rs/gtk3-rs.git"
features = ['v3_24']
[dependencies.ffi]