• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-51,18244,501

tests/H03-May-2022-4732

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

COPYRIGHTH A D29-Nov-1973651 1511

Cargo.tomlH A D01-Jan-19702 KiB8167

Cargo.toml.orig-cargoH A D29-Nov-19731.3 KiB5145

Gir.tomlH A D29-Nov-197330.5 KiB1,3071,204

LICENSEH A D29-Nov-19731 KiB1915

README.mdH A D29-Nov-19731.1 KiB4428

build.rsH A D29-Nov-1973150 41

README.md

1# gio
2
3__Rust__ bindings and wrappers for __GIO__, 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/gio/)
12 * [Rust API - Development](https://gtk-rs.org/gtk-rs-core/git/docs/gio)
13 * [C API](https://developer.gnome.org/gio/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]
25gio = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "gio" }
26```
27
28Avoid mixing versioned and git crates like this:
29
30```toml
31# This will not compile
32[dependencies]
33gio = "0.13"
34gio = { git = "https://github.com/gtk-rs/gtk-rs-core.git", package = "gio" }
35```
36
37### See Also
38
39 * [glib](https://crates.io/crates/glib)
40
41## License
42
43__gio__ is available under the MIT License, please refer to it.
44