An Aspire integration for hosting Rust apps.
$ dotnet add package CommunityToolkit.Aspire.Hosting.RustProvides extensions methods and resource definitions for the Aspire AppHost to support running Rust applications.
In your AppHost project, install the package using the following command:
dotnet add package CommunityToolkit.Aspire.Hosting.Rust
Then, in the Program.cs file of AppHost, define a Rust resource, then call AddRustApp:
var rustApp = builder.AddRustApp("rust-app", "../actix_api");
https://learn.microsoft.com/dotnet/aspire/community-toolkit/hosting-rust