# Rust GIO bindings
__Rust__ bindings and wrappers for [GIO](https://docs.gtk.org/gio/), part of [gtk-rs-core](https://github.com/gtk-rs/gtk-rs-core).
GIO __2.56__ is the lowest supported version for the underlying library.
## Minimum supported Rust version
Currently, the minimum supported Rust version is `1.63.0`.
## Documentation
* [Rust API - Stable](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/gio/)
* [Rust API - Development](https://gtk-rs.org/gtk-rs-core/git/docs/gio)
* [C API](https://docs.gtk.org/gio/)
* [GTK Installation instructions](https://www.gtk.org/docs/installations/)
## Using
We recommend using [crates from crates.io](https://crates.io/keywords/gtk-rs),
as [demonstrated here](https://gtk-rs.org/#using).
If you want to track the bleeding edge, use the git dependency instead:
```toml
[dependencies]
gio = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "gio" }
```
Avoid mixing versioned and git crates like this:
```toml
# This will not compile
[dependencies]
gio = "0.13"
gio = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "gio" }
```
### See Also
* [glib](https://crates.io/crates/glib)
## License
__gio__ is available under the MIT License, please refer to it.