Skip to content

Latest commit

 

History

History
 
 

gtk4

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

gtk4

Project site

Rust bindings of GTK 4, part of gtk4-rs.

Minimum supported Rust version

Currently, the minimum supported Rust version is 1.51.0.

Documentation

Using

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" }

Features

Feature Description
v4_2 Enable the new APIs part of GTK 4.2

See Also

License

The Rust bindings of gtk4 are available under the MIT License, please refer to it.