/rusty_function

Skeleton for Rust based Azure Functions.

Primary LanguageRustMIT LicenseMIT

Skeleton for Rust based Azure Functions.

This repository includes all the necessary parts to develop Azure function using the Rust programming language.

Key files to keep in mind when developing your function:

  • main.rs - your logic goes here.
  • host.json - define the executable in this file,
  • function.json - while this file is used to define how Azure while trigger the function. Note the $return value configured here.

For more information read this blog post and the corresponding documentation on Azure here.