diff --git a/crates/libs/sys/readme.md b/crates/libs/sys/readme.md index ee076f40ca..e419f7f4f5 100644 --- a/crates/libs/sys/readme.md +++ b/crates/libs/sys/readme.md @@ -3,8 +3,9 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates.io/crates/windows-sys) crates let you call any Windows API past, present, and future using code generated on the fly directly from the [metadata describing the API](https://github.com/microsoft/windows-rs/tree/master/crates/libs/bindgen/default) and right into your Rust package where you can call them as if they were just another Rust module. The Rust language projection follows in the tradition established by [C++/WinRT](https://github.com/microsoft/cppwinrt) of building language projections for Windows using standard languages and compilers, providing a natural and idiomatic way for Rust developers to call Windows APIs. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.52.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.52.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) +* [Feature search](https://microsoft.github.io/windows-rs/features/0.52.0) Start by adding the following to your Cargo.toml file: diff --git a/crates/libs/sys/src/lib.rs b/crates/libs/sys/src/lib.rs index 7b801b34ca..fa44b67ed5 100644 --- a/crates/libs/sys/src/lib.rs +++ b/crates/libs/sys/src/lib.rs @@ -1,5 +1,7 @@ /*! Learn more about Rust for Windows here: + +[Feature search](https://microsoft.github.io/windows-rs/features/0.52.0) */ #![no_std] diff --git a/crates/libs/windows/readme.md b/crates/libs/windows/readme.md index ee076f40ca..e419f7f4f5 100644 --- a/crates/libs/windows/readme.md +++ b/crates/libs/windows/readme.md @@ -3,8 +3,9 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates.io/crates/windows-sys) crates let you call any Windows API past, present, and future using code generated on the fly directly from the [metadata describing the API](https://github.com/microsoft/windows-rs/tree/master/crates/libs/bindgen/default) and right into your Rust package where you can call them as if they were just another Rust module. The Rust language projection follows in the tradition established by [C++/WinRT](https://github.com/microsoft/cppwinrt) of building language projections for Windows using standard languages and compilers, providing a natural and idiomatic way for Rust developers to call Windows APIs. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.52.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.52.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) +* [Feature search](https://microsoft.github.io/windows-rs/features/0.52.0) Start by adding the following to your Cargo.toml file: diff --git a/crates/libs/windows/src/lib.rs b/crates/libs/windows/src/lib.rs index 8f40536faf..0b3fd5c777 100644 --- a/crates/libs/windows/src/lib.rs +++ b/crates/libs/windows/src/lib.rs @@ -2,6 +2,8 @@ #![cfg_attr(docsrs, doc = "")] /*! Learn more about Rust for Windows here: + +[Feature search](https://microsoft.github.io/windows-rs/features/0.52.0) */ #![doc(html_no_source)] diff --git a/docs/readme.md b/docs/readme.md index 66e662fd49..48a5c504fd 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -5,6 +5,7 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates * [Getting started](https://kennykerr.ca/rust-getting-started/) * [Samples](https://github.com/microsoft/windows-rs/tree/master/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) +* [Feature search](https://microsoft.github.io/windows-rs/features/) This repo is the home of the following crates (and other supporting crates):