Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Commit

Permalink
Initial implementation of Azure Functions for Rust.
Browse files Browse the repository at this point in the history
This commit is the initial implementation of the Azure Functions for Rust
prototype.

It supports writing Azure Functions that bind with:

* HTTP trigger bindings
* HTTP output bindings
* Timer bindings
  • Loading branch information
Peter Huene committed Jul 12, 2018
1 parent 7d8c9be commit c036bd0
Show file tree
Hide file tree
Showing 161 changed files with 26,983 additions and 204 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Generated by Cargo
# will have compiled files and executables
/target/
**/target

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# Example generated script root directories
examples/http/root
examples/timer/root

.vscode/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "lib/protobuf"]
path = lib/protobuf
url = git@github.com:Azure/azure-functions-language-worker-protobuf.git
Loading

0 comments on commit c036bd0

Please sign in to comment.