Rust bindings of GTK 4, part of gtk4-rs.
Currently, the minimum supported Rust version is 1.51.0
.
- The Rust API Stable/Development
- Book [Stable]/Development
- Examples
- The C API
- GTK Installation Instructions
We recommend using crates from crates.io, as demonstrated here.
If you want to track the bleeding edge, use the git dependency instead:
[dependencies]
gtk = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gtk4" }
Avoid mixing versioned and git crates like this:
# This will not compile
[dependencies]
gdk = {version = "0.1", package = "gdk4"}
gtk = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gtk4" }
Feature | Description |
---|---|
v4_2 |
Enable the new APIs part of GTK 4.2 |
The Rust bindings of gtk4 are available under the MIT License, please refer to it.