Skip to content

Commit 911a16f

Browse files
cargo: update dependencies sources
1 parent eaf728c commit 911a16f

File tree

6 files changed

+63
-63
lines changed

6 files changed

+63
-63
lines changed

gdk4/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ git = "https://github.com/gtk-rs/lgpl-docs"
3333
[dependencies]
3434
libc = "0.2"
3535
bitflags = "1.0"
36-
glib-sys = { git = "https://github.com/gtk-rs/sys" }
37-
gdk4-sys = { git = "https://github.com/gtk-rs/sys" }
38-
gio-sys = { git = "https://github.com/gtk-rs/sys" }
39-
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
40-
cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" }
41-
cairo-rs = { git = "https://github.com/gtk-rs/cairo" }
42-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf" }
43-
gio = { git = "https://github.com/gtk-rs/gio" }
44-
glib = { git = "https://github.com/gtk-rs/glib" }
45-
pango = { git = "https://github.com/gtk-rs/pango" }
36+
glib-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
37+
gdk4-sys = { path = "./sys" }
38+
gio-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
39+
gobject-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
40+
cairo-sys-rs = { git = "https://github.com/gtk-rs/gtk-rs" }
41+
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs" }
42+
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs" }
43+
gio = { git = "https://github.com/gtk-rs/gtk-rs" }
44+
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
45+
pango = { git = "https://github.com/gtk-rs/gtk-rs" }
4646

4747
[dev-dependencies]
4848
gir-format-check = "^0.1"

gdk4/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.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: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,26 @@ git = "https://github.com/gtk-rs/lgpl-docs"
3939
libc = "0.2"
4040
bitflags = "1.0"
4141
once_cell = "1.0"
42-
atk = { git = "https://github.com/gtk-rs/atk" }
43-
atk-sys = { git = "https://github.com/gtk-rs/sys" }
44-
cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" }
45-
gdk-pixbuf-sys = { git = "https://github.com/gtk-rs/sys" }
46-
gdk4-sys = { git = "https://github.com/gtk-rs/sys" }
47-
gio-sys = { git = "https://github.com/gtk-rs/sys" }
48-
glib-sys = { git = "https://github.com/gtk-rs/sys" }
49-
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
50-
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" }
53-
pango-sys = { git = "https://github.com/gtk-rs/sys" }
54-
cairo-rs = { git = "https://github.com/gtk-rs/cairo" }
55-
gio = { git = "https://github.com/gtk-rs/gio", features = ["v2_46"] }
56-
glib = { git = "https://github.com/gtk-rs/glib" }
57-
gdk4 = { git = "https://github.com/gtk-rs/gdk4" }
58-
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/graphene" }
59-
gsk4 = { git = "https://github.com/gtk-rs/gsk4" }
60-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf" }
61-
pango = { git = "https://github.com/gtk-rs/pango", features = ["v1_46"] }
42+
atk = { git = "https://github.com/gtk-rs/gtk-rs" }
43+
atk-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
44+
cairo-sys-rs = { git = "https://github.com/gtk-rs/gtk-rs" }
45+
gdk-pixbuf-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
46+
gdk4-sys = { path = "../gdk4/sys" }
47+
gio-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
48+
glib-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
49+
gobject-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
50+
graphene-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
51+
gsk4-sys = { path = "../gsk4/sys" }
52+
gtk4-sys = { path = "./sys" }
53+
pango-sys = { git = "https://github.com/gtk-rs/gtk-rs" }
54+
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs" }
55+
gio = { git = "https://github.com/gtk-rs/gtk-rs", features = ["v2_46"] }
56+
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
57+
gdk4 = { path = "../gdk4" }
58+
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs" }
59+
gsk4 = { path = "../gsk4" }
60+
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs" }
61+
pango = { git = "https://github.com/gtk-rs/gtk-rs", features = ["v1_46"] }
6262

6363
[dev-dependencies]
6464
gir-format-check = "^0.1"

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)