glib 0.14.0

Rust bindings for the GLib library
Documentation
# glib

__Rust__ bindings and wrappers for __GLib__, part of [gtk-rs-core](https://github.com/gtk-rs/gtk-rs-core).

## Minimum supported Rust version

Currently, the minimum supported Rust version is `1.51.0`.

## Documentation

 * [Rust API - Stable]https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/
 * [Rust API - Development]https://gtk-rs.org/gtk-rs-core/git/docs/glib
 * [C API]https://developer.gnome.org/glib/stable/
 * [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]
glib = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "glib" }
```

Avoid mixing versioned and git crates like this:

```toml
# This will not compile
[dependencies]
glib = "0.13"
glib = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "glib" }
```

## License

__glib__ is available under the MIT License, please refer to it.