Skip to content

Commit 543a6c8

Browse files
Update Cargo.toml format for release
1 parent 830f867 commit 543a6c8

File tree

12 files changed

+56
-62
lines changed

12 files changed

+56
-62
lines changed

examples/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ edition = "2021"
77
[dependencies]
88
chrono = "0.4.19"
99
once_cell = "1.5"
10-
1110
glium = { version = "0.31", optional = true, default-features = false }
1211
epoxy = { version = "0.1.0", optional = true }
1312
libloading = { version = "0.7.0", optional = true }
1413

1514
[dependencies.gtk]
1615
path = "../gtk4"
1716
package = "gtk4"
17+
version = "0.4.0"
1818

1919
[features]
2020
default = []
@@ -144,4 +144,3 @@ path = "video_player/main.rs"
144144
[[bin]]
145145
name = "virtual_methods"
146146
path = "virtual_methods/main.rs"
147-

gdk4-wayland/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ features = ["dox"]
2626
[dependencies]
2727
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.4.0"}
2828
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.0"}
29-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v2_66"]}
30-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v2_66"]}
29+
gio = {version = "0.15.0", features = ["v2_66"]}
30+
glib = {version = "0.15.0", features = ["v2_66"]}
3131
libc = "0.2"
3232
wayland-client = {version = "0.29", features = ["use_system_lib"], optional = true}
3333
khronos-egl = {version = "4.1.0", optional = true}

gdk4-wayland/sys/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[package.metadata.system-deps.gtk4_wayland]
1617
name = "gtk4-wayland"
1718
version = "4.0.0"
1819

1920
[package.metadata.system-deps.gtk4_wayland.v4_4]
2021
version = "4.3.2"
22+
2123
[package.metadata.docs.rs]
2224
features = ["dox"]
2325

@@ -33,8 +35,7 @@ libc = "0.2"
3335

3436
[dependencies.glib]
3537
package = "glib-sys"
36-
git = "https://github.com/gtk-rs/gtk-rs-core.git"
37-
version = "0.15"
38+
version = "0.15.0"
3839

3940
[build-dependencies]
4041
system-deps = "6"

gdk4-x11/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[features]
1617
v4_4 = ["ffi/v4_4"]
1718
dox = ["ffi/dox", "egl", "xlib"]
@@ -24,8 +25,8 @@ features = ["dox"]
2425
[dependencies]
2526
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.4.0"}
2627
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.0"}
27-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v2_66"]}
28-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v2_66"]}
28+
gio = {features = ["v2_66"], version = "0.15.0"}
29+
glib = {features = ["v2_66"], version = "0.15.0"}
2930
libc = "0.2"
3031
x11 = {version = "2.18", optional = true }
3132
khronos-egl = {version = "4.1.0", optional = true}

gdk4-x11/sys/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[package.metadata.system-deps.gtk4_x11]
1617
name = "gtk4-x11"
1718
version = "4.0.0"
1819

1920
[package.metadata.system-deps.gtk4_x11.v4_4]
2021
version = "4.3.2"
22+
2123
[package.metadata.docs.rs]
2224
features = ["dox"]
2325

@@ -38,8 +40,7 @@ version = "0.4.0"
3840

3941
[dependencies.glib]
4042
package = "glib-sys"
41-
git = "https://github.com/gtk-rs/gtk-rs-core.git"
42-
version = "0.15"
43+
version = "0.15.0"
4344

4445
[build-dependencies]
4546
system-deps = "6"

gdk4/Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[lib]
1617
name = "gdk4"
1718

@@ -26,13 +27,13 @@ features = ["dox"]
2627

2728
[dependencies]
2829
bitflags = "1.0"
29-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15"}
30+
cairo-rs = "0.15.0"
3031
ffi = {package = "gdk4-sys", path = "./sys", version = "0.4.0"}
31-
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15"}
32-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v2_66"]}
33-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v2_66"]}
32+
gdk-pixbuf = "0.15.0"
33+
gio = {version = "0.15.0", features = ["v2_66"]}
34+
glib = {version = "0.15.0", features = ["v2_66"]}
3435
libc = "0.2"
35-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v1_46"]}
36+
pango = {version = "0.15.0", features = ["v1_46"]}
3637

3738
[dev-dependencies]
3839
gir-format-check = "^0.1"

gdk4/sys/Cargo.toml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[package.metadata.docs.rs]
1617
features = ["dox"]
18+
1719
[package.metadata.system-deps.gtk4]
1820
name = "gtk4"
1921
version = "4.0.0"
@@ -41,33 +43,27 @@ libc = "0.2"
4143

4244
[dependencies.cairo]
4345
package = "cairo-sys-rs"
44-
git = "https://github.com/gtk-rs/gtk-rs-core"
45-
version = "0.15"
46+
version = "0.15.0"
4647

4748
[dependencies.gdk-pixbuf]
4849
package = "gdk-pixbuf-sys"
49-
git = "https://github.com/gtk-rs/gtk-rs-core"
50-
version = "0.15"
50+
version = "0.15.0"
5151

5252
[dependencies.gio]
5353
package = "gio-sys"
54-
git = "https://github.com/gtk-rs/gtk-rs-core"
55-
version = "0.15"
54+
version = "0.15.0"
5655

5756
[dependencies.glib]
5857
package = "glib-sys"
59-
git = "https://github.com/gtk-rs/gtk-rs-core"
60-
version = "0.15"
58+
version = "0.15.0"
6159

6260
[dependencies.gobject]
6361
package = "gobject-sys"
64-
git = "https://github.com/gtk-rs/gtk-rs-core"
65-
version = "0.15"
62+
version = "0.15.0"
6663

6764
[dependencies.pango]
6865
package = "pango-sys"
69-
git = "https://github.com/gtk-rs/gtk-rs-core"
70-
version = "0.15"
66+
version = "0.15.0"
7167

7268
[build-dependencies]
7369
system-deps = "6"

gsk4/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[lib]
1617
name = "gsk4"
1718

@@ -27,13 +28,13 @@ features = ["dox"]
2728

2829
[dependencies]
2930
bitflags = "1.0"
30-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15"}
31+
cairo-rs = "0.15.0"
3132
ffi = {package = "gsk4-sys", path = "./sys", version = "0.4.0"}
3233
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.0"}
33-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v2_66"]}
34-
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15"}
34+
glib = {features = ["v2_66"], version = "0.15.0"}
35+
graphene = {package = "graphene-rs", version = "0.15.0"}
3536
libc = "0.2"
36-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.15", features = ["v1_46"]}
37+
pango = {features = ["v1_46"], version = "0.15.0"}
3738

3839
[dev-dependencies]
3940
gir-format-check = "^0.1"

gsk4/sys/Cargo.toml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[package.metadata.docs.rs]
1617
features = ["dox"]
18+
1719
[package.metadata.system-deps.gtk4]
1820
name = "gtk4"
1921
version = "4.0.0"
@@ -41,33 +43,28 @@ libc = "0.2"
4143

4244
[dependencies.cairo]
4345
package = "cairo-sys-rs"
44-
git = "https://github.com/gtk-rs/gtk-rs-core"
45-
version = "0.15"
46+
version = "0.15.0"
4647

4748
[dependencies.gdk]
4849
package = "gdk4-sys"
4950
path = "../../gdk4/sys"
50-
version = "0.4"
51+
version = "0.4.0"
5152

5253
[dependencies.glib]
5354
package = "glib-sys"
54-
git = "https://github.com/gtk-rs/gtk-rs-core"
55-
version = "0.15"
55+
version = "0.15.0"
5656

5757
[dependencies.gobject]
5858
package = "gobject-sys"
59-
git = "https://github.com/gtk-rs/gtk-rs-core"
60-
version = "0.15"
59+
version = "0.15.0"
6160

6261
[dependencies.graphene]
6362
package = "graphene-sys"
64-
git = "https://github.com/gtk-rs/gtk-rs-core"
65-
version = "0.15"
63+
version = "0.15.0"
6664

6765
[dependencies.pango]
6866
package = "pango-sys"
69-
git = "https://github.com/gtk-rs/gtk-rs-core"
70-
version = "0.15"
67+
version = "0.15.0"
7168

7269
[build-dependencies]
7370
system-deps = "6"

gtk4-macros/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ repository = "https://github.com/gtk-rs/gtk4-rs"
1212
include = ["../LICENSE"]
1313
version = "0.4.0"
1414
rust-version = "1.56"
15+
1516
[lib]
1617
proc-macro = true
1718

0 commit comments

Comments
 (0)