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

..03-May-2022-

src/H03-May-2022-8,1867,040

.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-19701.4 KiB5245

Cargo.toml.orig-cargoH A D29-Nov-1973803 3832

Gir.tomlH A D29-Nov-19733.3 KiB163144

LICENSEH A D29-Nov-19731 KiB1915

README.mdH A D29-Nov-19731.1 KiB4528

README.md

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