#cargo #winrt #run

app cargo-winrt

A simple utility for working with WinRT in a Rust project

3 releases

0.7.2 Jul 27, 2020
0.7.1 Jul 6, 2020
0.7.0 Jun 4, 2020

#330 in Windows APIs

MIT license

36KB
983 lines

cargo winrt

A simple utility for working with WinRT in a Rust project.

Installation

To install cargo winrt run the following:

cargo install --git https://github.com/microsoft/winrt-rs cargo-winrt

Usage

Install

To install NuGet packages, add NuGet dependencies to your projects Cargo.toml file like so:

[package.metadata.winrt.dependencies]
"Win2D.uwp" = "1.25.0"

Nuget packages at a given URL are also supported:

[package.metadata.winrt.dependencies]
"Win2D.uwp" = { url = "http://example.com/my/nuget/package" }

As well as unzipped on your local file system:

[package.metadata.winrt.dependencies]
"Win2D.uwp" = { path = "../../my-nuget-package" }

Then to install run:

cargo winrt install

Build

Rust WinRT works great with plain cargo, but if you want a way to ensure that you have installed all WinRT dependencies, before building, you can run:

cargo winrt build

This is equivalent to:

cargo winrt install
cargo build

Run

Just like building your WinRT projects, you can use cargo winrt to run your project in one step:

cargo winrt run

This is equivalent to:

cargo winrt install
cargo run

Dependencies

~15–26MB
~376K SLoC