File tree Expand file tree Collapse file tree 9 files changed +185
-2
lines changed
Expand file tree Collapse file tree 9 files changed +185
-2
lines changed Original file line number Diff line number Diff line change 2323 0.17=0.17
2424 0.16=0.16
2525 RUSTDOCFLAGS : --cfg docsrs -Zunstable-options --generate-link-to-definition
26+ DOCS_RS : 1
2627 steps :
2728 - uses : actions/checkout@v6
2829 with :
Original file line number Diff line number Diff line change 1+ # Rust Gio Unix bindings
2+
3+ __ Rust__ bindings and wrappers for [ gio] ( https://docs.gtk.org/gio/ ) , part of [ gtk-rs-core] ( https://github.com/gtk-rs/gtk-rs-core ) .
4+
5+ Gio __ 2.56__ is the lowest supported version for the underlying library.
6+
7+ ## Minimum supported Rust version
8+
9+ Currently, the minimum supported Rust version is ` 1.83.0 ` .
10+
11+ ## Documentation
12+
13+ * [ Rust API - Stable] ( https://gtk-rs.org/gtk-rs-core/stable/latest/docs/gio_unix/ )
14+ * [ Rust API - Development] ( https://gtk-rs.org/gtk-rs-core/git/docs/gio_unix )
15+ * [ GTK Installation instructions] ( https://www.gtk.org/docs/installations/ )
16+
17+ ## Using
18+
19+ We recommend using [ crates from crates.io] ( https://crates.io/keywords/gtk-rs ) ,
20+ as [ demonstrated here] ( https://gtk-rs.org/#using ) .
21+
22+ If you want to track the bleeding edge, use the git dependency instead:
23+
24+ ``` toml
25+ [dependencies ]
26+ gio = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " gio" }
27+ ```
28+
29+ Avoid mixing versioned and git crates like this:
30+
31+ ``` toml
32+ # This will not compile
33+ [dependencies ]
34+ glib = " 0.13"
35+ gio = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " gio" }
36+ ```
37+
38+ ### See Also
39+
40+ * [ glib] ( https://crates.io/crates/glib )
41+
42+ ## License
43+
44+ __ gio-unix__ is available under the MIT License, please refer to it.
Original file line number Diff line number Diff line change 11// Take a look at the license at the top of the repository in the LICENSE file.
2+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
3+ #![ doc = include_str ! ( "../README.md" ) ]
24
35pub use ffi;
46
Original file line number Diff line number Diff line change 1+ # Rust Gio Win32 bindings
2+
3+ __ Rust__ bindings and wrappers for [ gio] ( https://docs.gtk.org/gio/ ) , part of [ gtk-rs-core] ( https://github.com/gtk-rs/gtk-rs-core ) .
4+
5+ Gio __ 2.56__ is the lowest supported version for the underlying library.
6+
7+ ## Minimum supported Rust version
8+
9+ Currently, the minimum supported Rust version is ` 1.83.0 ` .
10+
11+ ## Documentation
12+
13+ * [ Rust API - Stable] ( https://gtk-rs.org/gtk-rs-core/stable/latest/docs/gio_win32/ )
14+ * [ Rust API - Development] ( https://gtk-rs.org/gtk-rs-core/git/docs/gio_win32 )
15+ * [ GTK Installation instructions] ( https://www.gtk.org/docs/installations/ )
16+
17+ ## Using
18+
19+ We recommend using [ crates from crates.io] ( https://crates.io/keywords/gtk-rs ) ,
20+ as [ demonstrated here] ( https://gtk-rs.org/#using ) .
21+
22+ If you want to track the bleeding edge, use the git dependency instead:
23+
24+ ``` toml
25+ [dependencies ]
26+ gio = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " gio" }
27+ ```
28+
29+ Avoid mixing versioned and git crates like this:
30+
31+ ``` toml
32+ # This will not compile
33+ [dependencies ]
34+ glib = " 0.13"
35+ gio = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " gio" }
36+ ```
37+
38+ ### See Also
39+
40+ * [ glib] ( https://crates.io/crates/glib )
41+
42+ ## License
43+
44+ __ gio-win32__ is available under the MIT License, please refer to it.
Original file line number Diff line number Diff line change 11// Take a look at the license at the top of the repository in the LICENSE file.
2+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
3+ #![ doc = include_str ! ( "../README.md" ) ]
24
35pub use ffi;
46
Original file line number Diff line number Diff line change 1+ # Rust GLib Unix bindings
2+
3+ __ Rust__ bindings and wrappers for [ glib] ( https://docs.gtk.org/glib/ ) , part of [ gtk-rs-core] ( https://github.com/gtk-rs/gtk-rs-core ) .
4+
5+ GLib __ 2.56__ is the lowest supported version for the underlying library.
6+
7+ ## Minimum supported Rust version
8+
9+ Currently, the minimum supported Rust version is ` 1.83.0 ` .
10+
11+ ## Documentation
12+
13+ * [ Rust API - Stable] ( https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib_unix/ )
14+ * [ Rust API - Development] ( https://gtk-rs.org/gtk-rs-core/git/docs/glib_unix )
15+ * [ GTK Installation instructions] ( https://www.gtk.org/docs/installations/ )
16+
17+ ## Using
18+
19+ We recommend using [ crates from crates.io] ( https://crates.io/keywords/gtk-rs ) ,
20+ as [ demonstrated here] ( https://gtk-rs.org/#using ) .
21+
22+ If you want to track the bleeding edge, use the git dependency instead:
23+
24+ ``` toml
25+ [dependencies ]
26+ glib = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " glib" }
27+ ```
28+
29+ Avoid mixing versioned and git crates like this:
30+
31+ ``` toml
32+ # This will not compile
33+ [dependencies ]
34+ glib = " 0.13"
35+ glib = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " glib" }
36+ ```
37+
38+ ### See Also
39+
40+ * [ gio] ( https://crates.io/crates/gio )
41+
42+ ## License
43+
44+ __ glib-unix__ is available under the MIT License, please refer to it.
Original file line number Diff line number Diff line change 11// Take a look at the license at the top of the repository in the LICENSE file.
2-
2+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
3+ #![ doc = include_str ! ( "../README.md" ) ]
34pub use ffi;
45
56mod auto;
Original file line number Diff line number Diff line change 1+ # Rust GLib Win32 bindings
2+
3+ __ Rust__ bindings and wrappers for [ glib] ( https://docs.gtk.org/glib/ ) , part of [ gtk-rs-core] ( https://github.com/gtk-rs/gtk-rs-core ) .
4+
5+ GLib __ 2.56__ is the lowest supported version for the underlying library.
6+
7+ ## Minimum supported Rust version
8+
9+ Currently, the minimum supported Rust version is ` 1.83.0 ` .
10+
11+ ## Documentation
12+
13+ * [ Rust API - Stable] ( https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib_win32/ )
14+ * [ Rust API - Development] ( https://gtk-rs.org/gtk-rs-core/git/docs/glib_win32 )
15+ * [ GTK Installation instructions] ( https://www.gtk.org/docs/installations/ )
16+
17+ ## Using
18+
19+ We recommend using [ crates from crates.io] ( https://crates.io/keywords/gtk-rs ) ,
20+ as [ demonstrated here] ( https://gtk-rs.org/#using ) .
21+
22+ If you want to track the bleeding edge, use the git dependency instead:
23+
24+ ``` toml
25+ [dependencies ]
26+ glib = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " glib" }
27+ ```
28+
29+ Avoid mixing versioned and git crates like this:
30+
31+ ``` toml
32+ # This will not compile
33+ [dependencies ]
34+ glib = " 0.13"
35+ glib = { git = " https://github.com/gtk-rs/gtk-rs-core.git" , package = " glib" }
36+ ```
37+
38+ ### See Also
39+
40+ * [ gio] ( https://crates.io/crates/gio )
41+
42+ ## License
43+
44+ __ glib-win32 is available under the MIT License, please refer to it.
Original file line number Diff line number Diff line change 11// Take a look at the license at the top of the repository in the LICENSE file.
2-
2+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
3+ #![ doc = include_str ! ( "../README.md" ) ]
34pub use ffi;
45
56mod auto;
You can’t perform that action at this time.
0 commit comments