Skip to content

Commit 0948ad6

Browse files
cargo: update dependencies sources
1 parent eaf728c commit 0948ad6

File tree

6 files changed

+38
-38
lines changed

6 files changed

+38
-38
lines changed

gdk4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ git = "https://github.com/gtk-rs/lgpl-docs"
3434
libc = "0.2"
3535
bitflags = "1.0"
3636
glib-sys = { git = "https://github.com/gtk-rs/sys" }
37-
gdk4-sys = { git = "https://github.com/gtk-rs/sys" }
37+
gdk4-sys = { path = "./sys" }
3838
gio-sys = { git = "https://github.com/gtk-rs/sys" }
3939
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
4040
cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" }

gdk4/sys/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ libc = "0.2"
88
git = "https://github.com/gtk-rs/cairo"
99

1010
[dependencies.gdk-pixbuf-sys]
11-
path = "../gdk-pixbuf-sys"
11+
git = "https://github.com/gtk-rs/gtk-rs"
1212

1313
[dependencies.gio-sys]
14-
path = "../gio-sys"
14+
git = "https://github.com/gtk-rs/gtk-rs"
1515

1616
[dependencies.glib-sys]
17-
path = "../glib-sys"
17+
git = "https://github.com/gtk-rs/gtk-rs"
1818

1919
[dependencies.gobject-sys]
20-
path = "../gobject-sys"
20+
git = "https://github.com/gtk-rs/gtk-rs"
2121

2222
[dependencies.pango-sys]
23-
path = "../pango-sys"
23+
git = "https://github.com/gtk-rs/gtk-rs"
2424

2525
[dev-dependencies]
2626
shell-words = "1.0.0"

gsk4/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ git = "https://github.com/gtk-rs/lgpl-docs"
3535
[dependencies]
3636
libc = "0.2"
3737
bitflags = "1.0"
38-
glib-sys = { git = "https://github.com/gtk-rs/sys" }
39-
gdk4-sys = { git = "https://github.com/gtk-rs/sys" }
40-
graphene-sys = { git = "https://github.com/gtk-rs/graphene" }
41-
gsk4-sys = { git = "https://github.com/gtk-rs/sys" }
42-
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
43-
cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" }
44-
cairo-rs = { git = "https://github.com/gtk-rs/cairo" }
45-
glib = { git = "https://github.com/gtk-rs/glib" }
46-
gdk4 = { git = "https://github.com/gtk-rs/gdk4" }
47-
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/graphene" }
48-
pango = { git = "https://github.com/gtk-rs/pango" }
38+
glib-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
39+
gdk4-sys = { path = "../gdk4/sys" }
40+
graphene-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
41+
gsk4-sys = { path = "./sys" }
42+
gobject-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
43+
cairo-sys-rs = { git = "https://github.com/gtk-rs/gtk-rs" }
44+
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs" }
45+
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
46+
gdk4 = { path = "../gdk4" }
47+
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs" }
48+
pango = { git = "https://github.com/gtk-rs/gtk-rs" }
4949

5050
[dev-dependencies]
5151
gir-format-check = "^0.1"

gsk4/sys/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ system-deps = "1.3"
55
libc = "0.2"
66

77
[dependencies.cairo-sys-rs]
8-
git = "https://github.com/gtk-rs/cairo"
8+
git = "https://github.com/gtk-rs/gtk-rs"
99

1010
[dependencies.gdk4-sys]
11-
path = "../gdk4-sys"
11+
path = "../../gdk4/sys"
1212

1313
[dependencies.glib-sys]
14-
path = "../glib-sys"
14+
git = "https://github.com/gtk-rs/gtk-rs"
1515

1616
[dependencies.gobject-sys]
17-
path = "../gobject-sys"
17+
git = "https://github.com/gtk-rs/gtk-rs"
1818

1919
[dependencies.graphene-sys]
20-
git = "https://github.com/gtk-rs/graphene"
20+
git = "https://github.com/gtk-rs/gtk-rs"
2121

2222
[dependencies.pango-sys]
23-
path = "../pango-sys"
23+
git = "https://github.com/gtk-rs/gtk-rs"
2424

2525
[dev-dependencies]
2626
shell-words = "1.0.0"

gtk4/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ atk = { git = "https://github.com/gtk-rs/atk" }
4343
atk-sys = { git = "https://github.com/gtk-rs/sys" }
4444
cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" }
4545
gdk-pixbuf-sys = { git = "https://github.com/gtk-rs/sys" }
46-
gdk4-sys = { git = "https://github.com/gtk-rs/sys" }
46+
gdk4-sys = { path = "../gdk4/sys" }
4747
gio-sys = { git = "https://github.com/gtk-rs/sys" }
4848
glib-sys = { git = "https://github.com/gtk-rs/sys" }
4949
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
5050
graphene-sys = { git = "https://github.com/gtk-rs/graphene" }
51-
gsk4-sys = { git = "https://github.com/gtk-rs/sys" }
52-
gtk4-sys = { git = "https://github.com/gtk-rs/sys" }
51+
gsk4-sys = { path = "../gsk4/sys" }
52+
gtk4-sys = { path = "./sys" }
5353
pango-sys = { git = "https://github.com/gtk-rs/sys" }
5454
cairo-rs = { git = "https://github.com/gtk-rs/cairo" }
5555
gio = { git = "https://github.com/gtk-rs/gio", features = ["v2_46"] }
5656
glib = { git = "https://github.com/gtk-rs/glib" }
57-
gdk4 = { git = "https://github.com/gtk-rs/gdk4" }
57+
gdk4 = { path = "../gdk4" }
5858
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/graphene" }
59-
gsk4 = { git = "https://github.com/gtk-rs/gsk4" }
59+
gsk4 = { path = "../gsk4" }
6060
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf" }
6161
pango = { git = "https://github.com/gtk-rs/pango", features = ["v1_46"] }
6262

gtk4/sys/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,34 @@ system-deps = "1.3"
55
libc = "0.2"
66

77
[dependencies.atk-sys]
8-
path = "../atk-sys"
8+
git = "https://github.com/gtk-rs/gtk-rs"
99

1010
[dependencies.cairo-sys-rs]
11-
git = "https://github.com/gtk-rs/cairo"
11+
git = "https://github.com/gtk-rs/gtk-rs"
1212

1313
[dependencies.gdk-pixbuf-sys]
14-
path = "../gdk-pixbuf-sys"
14+
git = "https://github.com/gtk-rs/gtk-rs"
1515

1616
[dependencies.gdk4-sys]
17-
path = "../gdk4-sys"
17+
path = "../../gdk4/sys"
1818

1919
[dependencies.gio-sys]
20-
path = "../gio-sys"
20+
git = "https://github.com/gtk-rs/gtk-rs"
2121

2222
[dependencies.glib-sys]
23-
path = "../glib-sys"
23+
git = "https://github.com/gtk-rs/gtk-rs"
2424

2525
[dependencies.gobject-sys]
26-
path = "../gobject-sys"
26+
git = "https://github.com/gtk-rs/gtk-rs"
2727

2828
[dependencies.graphene-sys]
29-
git = "https://github.com/gtk-rs/graphene"
29+
git = "https://github.com/gtk-rs/gtk-rs"
3030

3131
[dependencies.gsk4-sys]
32-
path = "../gsk4-sys"
32+
path = "../../gsk4/sys"
3333

3434
[dependencies.pango-sys]
35-
path = "../pango-sys"
35+
git = "https://github.com/gtk-rs/gtk-rs"
3636

3737
[dev-dependencies]
3838
shell-words = "1.0.0"

0 commit comments

Comments
 (0)