Windows
Bindings to Windows-specific APIs.
Topic | Rust Crates |
---|---|
File System Operations | Use the standard std::fs , path , but also the windows ⮳ crate. |
Process Management | Use std::process , windows ⮳. |
Networking (Sockets) | Use std::net , tokio ⮳ as usual. |
Windows API Interaction | windows ⮳, winapi ⮳ |
Registry Access | winreg ⮳ |
Services | windows ⮳ |
COM (Component Object Model) | com , windows ⮳ |
DLLs (Dynamic Link Libraries) | libloading ⮳ |
Code Examples
Recipe | Crates | Categories |
---|---|---|
Bind to Windows APIs with windows | ||
Bind to Windows APIs with winapi |