Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
clone_tests/ | H | 03-May-2022 | - | 169 | 149 | |
src/ | H | 03-May-2022 | - | 30,062 | 21,982 | |
tests/ | H | 03-May-2022 | - | 892 | 733 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 01-Jan-1970 | 74 | 6 | 5 | |
COPYRIGHT | H A D | 01-Jan-1970 | 651 | 15 | 11 | |
Cargo.toml | H A D | 01-Jan-1970 | 2.2 KiB | 92 | 76 | |
Cargo.toml.orig-cargo | H A D | 01-Jan-1970 | 1.5 KiB | 55 | 49 | |
Gir.toml | H A D | 01-Jan-1970 | 15.2 KiB | 645 | 618 | |
Gir_GObject.toml | H A D | 01-Jan-1970 | 1.3 KiB | 55 | 49 | |
LICENSE | H A D | 01-Jan-1970 | 1 KiB | 19 | 15 | |
README.md | H A D | 01-Jan-1970 | 1.1 KiB | 40 | 26 |
README.md
1# glib 2 3__Rust__ bindings and wrappers for __GLib__, part of [gtk-rs-core](https://github.com/gtk-rs/gtk-rs-core). 4 5## Minimum supported Rust version 6 7Currently, the minimum supported Rust version is `1.51.0`. 8 9## Documentation 10 11 * [Rust API - Stable](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/) 12 * [Rust API - Development](https://gtk-rs.org/gtk-rs-core/git/docs/glib) 13 * [C API](https://developer.gnome.org/glib/stable/) 14 * [GTK Installation instructions](https://www.gtk.org/docs/installations/) 15 16## Using 17 18We recommend using [crates from crates.io](https://crates.io/keywords/gtk-rs), 19as [demonstrated here](https://gtk-rs.org/#using). 20 21If you want to track the bleeding edge, use the git dependency instead: 22 23```toml 24[dependencies] 25glib = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "glib" } 26``` 27 28Avoid mixing versioned and git crates like this: 29 30```toml 31# This will not compile 32[dependencies] 33glib = "0.13" 34glib = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "glib" } 35``` 36 37## License 38 39__glib__ is available under the MIT License, please refer to it. 40