Skip to content

Commit d54b3d2

Browse files
Expose the new v4_16 feature
1 parent c970673 commit d54b3d2

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

gdk4-wayland/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ version.workspace = true
1717
v4_4 = ["ffi/v4_4", "gdk/v4_4"]
1818
v4_10 = ["ffi/v4_10", "v4_4", "gdk/v4_10"]
1919
v4_12 = ["ffi/v4_12", "v4_10", "gdk/v4_12"]
20+
v4_16 = ["ffi/v4_16", "v4_12", "gdk/v4_16"]
2021
wayland_crate = ["wayland-client", "wayland-backend"]
2122
egl = ["khronos-egl"]
2223

gdk4-wayland/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ gdk-wayland = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gdk4-w
4343

4444
| Feature | Description |
4545
| --- | ----------- |
46+
| `v4_16` | Enable the new APIs part of GTK 4.16 |
4647
| `v4_12` | Enable the new APIs part of GTK 4.12 |
4748
| `v4_10` | Enable the new APIs part of GTK 4.10 |
4849
| `v4_4` | Enable the new APIs part of GTK 4.4 |

gdk4-x11/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ version.workspace = true
1616
[features]
1717
v4_4 = ["ffi/v4_4", "gdk/v4_4"]
1818
v4_10 = ["ffi/v4_10", "v4_4", "gdk/v4_10"]
19+
v4_16 = ["ffi/v4_16", "v4_10", "gdk/v4_16"]
1920
egl = ["khronos-egl"]
2021
xlib = ["x11"]
2122

gdk4-x11/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ gdk-wayland = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gdk4-w
4343

4444
| Feature | Description |
4545
| --- | ----------- |
46+
| `v4_16` | Enable the new APIs part of GTK 4.16 |
4647
| `v4_10` | Enable the new APIs part of GTK 4.10 |
4748
| `v4_4` | Enable the new APIs part of GTK 4.4 |
4849
| `egl` | Integration with the [khronos-egl](https://crates.io/crates/khronos-egl) crate |

gdk4/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ v4_8 = ["ffi/v4_8", "v4_6"]
2424
v4_10 = ["ffi/v4_10", "v4_8"]
2525
v4_12 = ["ffi/v4_12", "v4_10"]
2626
v4_14 = ["ffi/v4_14", "v4_12"]
27+
v4_16 = ["ffi/v4_16", "v4_14"]
2728
gl = ["dep:gl"]
2829

2930
[dependencies]

gdk4/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ gdk = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gdk4" }
4040

4141
| Feature | Description |
4242
| --- | ----------- |
43+
| `v4_16` | Enable the new APIs part of GTK 4.16 |
4344
| `v4_14` | Enable the new APIs part of GTK 4.14 |
4445
| `v4_12` | Enable the new APIs part of GTK 4.12 |
4546
| `v4_10` | Enable the new APIs part of GTK 4.10 |

gtk4/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ v4_8 = ["ffi/v4_8", "v4_6", "gdk/v4_8"]
2424
v4_10 = ["ffi/v4_10", "v4_8", "gdk/v4_10", "gsk/v4_10"]
2525
v4_12 = ["ffi/v4_12", "v4_10", "gdk/v4_12"]
2626
v4_14 = ["ffi/v4_14", "v4_12", "gdk/v4_14", "gsk/v4_14"]
27+
v4_16 = ["ffi/v4_16", "v4_14", "gdk/v4_16"]
2728
gio_v2_80 = ["gio/v2_80"]
2829
xml_validation = ["gtk4-macros/xml_validation"]
2930
blueprint = ["gtk4-macros/blueprint"]

gtk4/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ gtk = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gtk4" }
183183

184184
| Feature | Description |
185185
| --- | ----------- |
186+
| `v4_16` | Enable the new APIs part of GTK 4.16 |
186187
| `v4_14` | Enable the new APIs part of GTK 4.14 |
187188
| `v4_12` | Enable the new APIs part of GTK 4.12 |
188189
| `v4_10` | Enable the new APIs part of GTK 4.10 |

0 commit comments

Comments
 (0)