1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# atk
[Project site](https://gtk-rs.org/)
__Rust__ bindings and wrappers for __Atk__, part of [gtk3-rs](https://github.com/gtk-rs/gtk3-rs).
## Minimum supported Rust version
Currently, the minimum supported Rust version is `1.51.0`.
## Documentation
* [Rust API - Stable](https://gtk-rs.org/gtk3-rs/stable/latest/docs/atk/)
* [Rust API - Development](https://gtk-rs.org/gtk3-rs/git/docs/atk)
* [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]
atk = { git = "https://github.com/gtk-rs/gtk3-rs.git", package = "atk" }
```
Avoid mixing versioned and git crates like this:
```toml
# This will not compile
[dependencies]
atk = "0.13"
atk = { git = "https://github.com/gtk-rs/gtk3-rs.git", package = "atk" }
```
### See Also
* [glib](https://crates.io/crates/glib)
## License
__atk__ is available under the MIT License, please refer to it.
|