# gtk-rs **Repository Path**: schizobuliawj/gtk-rs ## Basic Information - **Project Name**: gtk-rs - **Description**: 将gtk-rs fork到gitee - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gtk-rs ![CI](https://github.com/gtk-rs/gtk-rs/workflows/CI/badge.svg) The `gtk-rs` organization aims to provide safe Rust binding over `GObject`-based libraries. You can find more about it on . This repository contains all the "core" crates of the gtk-rs organization. For more information about each crate, please refer to their `README.md` file in their directory. ## Documentation You can see the all the released crates' documentation in [one place](https://gtk-rs.org/docs-src/). ## Regenerating To regenerate crates using [gir], please use the `generator.py` file as follows: ```bash $ python3 generator.py ``` ## Development This repository is mostly split into two branches: `master` and `crate`. `master` contains the not yet released code and is where new developments are happening. `crate` contains the last release source code and isn't supposed to be updated. This repository is structured as follows: ```text - crate/ | |-- README.md |-- Gir.toml |-- Cargo.toml |-- src/ |-- sys/ ``` The `crate` is a "top" directory (so "atk" or "gdk" in here for example). I listed some import files, let's quickly explain them: * `README.md`: Explanations about the crate itself and eventually some details. * `Gir.toml`: Used by [gir] to generate most of the crates' code. * `Cargo.toml`: File describing the crate, used by `cargo` and `Rust`. * `src`: Contains the source code of the crate. * `sys`: Contains the 1:1 bindings of the C API. [gir]: https://github.com/gtk-rs/gir