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

Commit cd5ece8

Browse files
Update Cargo.toml format for release
1 parent 5684af1 commit cd5ece8

File tree

11 files changed

+58
-45
lines changed

11 files changed

+58
-45
lines changed

atk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ features = ["dox"]
3333
[dependencies]
3434
libc = "0.2"
3535
bitflags = "1.0"
36-
ffi = { package = "atk-sys", path = "sys" }
37-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
36+
ffi = {package = "atk-sys", path = "sys", version = "0.15.0"}
37+
glib = "0.15.0"
3838

3939
[dev-dependencies]
4040
gir-format-check = "^0.1"

atk/sys/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ libc = "0.2"
66

77
[dependencies.glib]
88
package = "glib-sys"
9-
git = "https://github.com/gtk-rs/gtk-rs-core"
9+
version = "0.15.0"
1010

1111
[dependencies.gobject]
1212
package = "gobject-sys"
13-
git = "https://github.com/gtk-rs/gtk-rs-core"
13+
version = "0.15.0"
1414

1515
[dev-dependencies]
1616
shell-words = "1.0.0"
@@ -40,8 +40,10 @@ version = "0.15.0"
4040
include = ["../../LICENSE"]
4141
edition = "2021"
4242
rust-version = "1.56"
43+
4344
[package.metadata.docs.rs]
4445
features = ["dox"]
46+
4547
[package.metadata.system-deps.atk]
4648
name = "atk"
4749
version = "2.18"

examples/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,21 @@ futures-util = "0.3"
1111
once_cell = "1.2.0"
1212

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

1616
[dependencies.gtk]
1717
path = "../gtk"
18+
version = "0.15.0"
1819

1920
[dependencies.pangocairo]
20-
git = "https://github.com/gtk-rs/gtk-rs-core"
2121
optional = true
22+
version = "0.15.0"
2223

2324
[dependencies.cairo]
2425
package = "cairo-rs"
25-
git = "https://github.com/gtk-rs/gtk-rs-core"
2626
features = ["png"]
2727
optional = true
28+
version = "0.15.0"
2829

2930
[build-dependencies.gio]
3031
git = "https://github.com/gtk-rs/gtk-rs-core"

gdk/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ features = ["dox"]
3131
[dependencies]
3232
libc = "0.2"
3333
bitflags = "1.0"
34-
ffi = { package = "gdk-sys", path = "sys" }
35-
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
36-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
37-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
38-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
39-
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
34+
ffi = {package = "gdk-sys", path = "sys", version = "0.15.0"}
35+
cairo-rs = "0.15.0"
36+
gdk-pixbuf = "0.15.0"
37+
gio = "0.15.0"
38+
glib = "0.15.0"
39+
pango = "0.15.0"
4040

4141
[dev-dependencies]
4242
gir-format-check = "^0.1"

gdk/sys/Cargo.toml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ libc = "0.2"
77

88
[dependencies.cairo]
99
package = "cairo-sys-rs"
10-
git = "https://github.com/gtk-rs/gtk-rs-core"
10+
version = "0.15.0"
1111

1212
[dependencies.gdk-pixbuf]
1313
package = "gdk-pixbuf-sys"
14-
git = "https://github.com/gtk-rs/gtk-rs-core"
14+
version = "0.15.0"
1515

1616
[dependencies.gio]
1717
package = "gio-sys"
18-
git = "https://github.com/gtk-rs/gtk-rs-core"
18+
version = "0.15.0"
1919

2020
[dependencies.glib]
2121
package = "glib-sys"
22-
git = "https://github.com/gtk-rs/gtk-rs-core"
22+
version = "0.15.0"
2323

2424
[dependencies.gobject]
2525
package = "gobject-sys"
26-
git = "https://github.com/gtk-rs/gtk-rs-core"
26+
version = "0.15.0"
2727

2828
[dependencies.pango]
2929
package = "pango-sys"
30-
git = "https://github.com/gtk-rs/gtk-rs-core"
30+
version = "0.15.0"
3131

3232
[dev-dependencies]
3333
shell-words = "1.0.0"
@@ -56,8 +56,10 @@ version = "0.15.0"
5656
include = ["../../LICENSE"]
5757
edition = "2021"
5858
rust-version = "1.56"
59+
5960
[package.metadata.docs.rs]
6061
features = ["dox"]
62+
6163
[package.metadata.system-deps.gdk_3_0]
6264
name = "gdk-3.0"
6365
version = "3.18"

gdkwayland/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ dox = ["ffi/dox"]
2323
features = ["dox"]
2424

2525
[dependencies]
26-
ffi = { path = "./sys", package = "gdkwayland-sys" }
27-
gdk = { path = "../gdk" }
28-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
26+
ffi = {path = "./sys", package = "gdkwayland-sys", version = "0.15.0"}
27+
gdk = {path = "../gdk", version = "0.15.0"}
28+
glib = "0.15.0"
2929
libc = "0.2"
3030
wayland-client = {version = "0.29", features = ["use_system_lib"]}
3131

gdkwayland/sys/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,16 @@ libc = "0.2"
2525

2626
[dependencies.glib]
2727
package = "glib-sys"
28-
git = "https://github.com/gtk-rs/gtk-rs-core"
28+
version = "0.15.0"
2929

3030
[dependencies.gobject]
3131
package = "gobject-sys"
32-
git = "https://github.com/gtk-rs/gtk-rs-core"
32+
version = "0.15.0"
3333

3434
[dependencies.gdk]
3535
package = "gdk-sys"
3636
path = "../../gdk/sys"
37+
version = "0.15.0"
3738

3839
[build-dependencies]
3940
pkg-config = "0.3.7"

gdkx11/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ features = ["dox"]
3232
[dependencies]
3333
libc = "0.2"
3434
x11 = "2.18"
35-
ffi = { package = "gdkx11-sys", path = "sys" }
36-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
37-
gdk = { path = "../gdk" }
38-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
35+
ffi = {package = "gdkx11-sys", path = "sys", version = "0.15.0"}
36+
glib = "0.15.0"
37+
gdk = {path = "../gdk", version = "0.15.0"}
38+
gio = "0.15.0"
3939

4040
[dev-dependencies]
4141
gir-format-check = "^0.1"

gdkx11/sys/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ build = "build.rs"
1111
include = ["../../LICENSE"]
1212
edition = "2021"
1313
rust-version = "1.56"
14+
1415
[package.metadata.docs.rs]
1516
features = ["dox"]
17+
1618
[package.metadata.system-deps.gdk_x11_3_0]
1719
name = "gdk-x11-3.0"
1820
version = "3.18"
@@ -33,15 +35,16 @@ x11 = "2.18"
3335
[dependencies.gdk]
3436
package = "gdk-sys"
3537
path = "../../gdk/sys"
38+
version = "0.15.0"
3639

3740
[dependencies.glib]
3841
package = "glib-sys"
39-
git = "https://github.com/gtk-rs/gtk-rs-core"
42+
version = "0.15.0"
4043

4144
[dependencies.cairo]
4245
package = "cairo-sys-rs"
43-
git = "https://github.com/gtk-rs/gtk-rs-core"
4446
optional = true
47+
version = "0.15.0"
4548

4649
[build-dependencies]
4750
system-deps = "6"

gtk/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ bitflags = "1.0"
4848
field-offset = "0.3"
4949
futures-channel = "0.3"
5050
once_cell = "1.0"
51-
atk = { path = "../atk" }
52-
ffi = { package = "gtk-sys", path = "sys" }
53-
gtk3-macros = { path = "../gtk3-macros" }
54-
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
55-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
56-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
57-
gdk = { path = "../gdk" }
58-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
59-
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
51+
atk = {path = "../atk", version = "0.15.0"}
52+
ffi = {package = "gtk-sys", path = "sys", version = "0.15.0"}
53+
gtk3-macros = {path = "../gtk3-macros", version = "0.15.0"}
54+
cairo-rs = "0.15.0"
55+
gio = "0.15.0"
56+
glib = "0.15.0"
57+
gdk = {path = "../gdk", version = "0.15.0"}
58+
gdk-pixbuf = "0.15.0"
59+
pango = "0.15.0"
6060

6161
[dev-dependencies]
6262
gir-format-check = "^0.1"

0 commit comments

Comments
 (0)