Files
fn-serverless/examples/hello/rust
Seif Lotfy سيف لطفي 237ab3e21b Inital work on Rust support (#333)
* Inital work on Rust support

* update accepted runtimes

* fn: fix rust build

* Last tweaks and README.md

* fix typo

* update comment on rust.go
2016-11-23 23:17:13 +01:00
..
2016-11-23 23:17:13 +01:00
2016-11-23 23:17:13 +01:00
2016-11-23 23:17:13 +01:00

Using rust with functions

The easiest way to create a iron function in rust is via cargo and fn.

Prerequisites

First create an epty rust project as follows:

cargo init --name func --bin

Make sure the project name is func and is of type bin. Now just edit your code, once done you can create an iron function.

Creating an IronFunction

Simply run

fn init --runtime=rust <username>/<funcname>

This will create the func.yaml file required by functions, which can be built by running:

fn build

Testing

fn run