Add Durable Functions for Rust crate.

This commit adds the `azure-functions-durable` crate to the workspace.
This commit is contained in:
Peter Huene 2019-07-22 00:31:13 -07:00 committed by Peter Huene
parent 50d45593fd
commit 10eb2cbc76
No known key found for this signature in database
GPG Key ID: E1D265D820213D6A
3 changed files with 16 additions and 0 deletions

View File

@ -3,6 +3,7 @@
members = [
"azure-functions",
"azure-functions-codegen",
"azure-functions-durable",
"azure-functions-sdk",
"azure-functions-shared",
"azure-functions-shared-codegen",

View File

@ -0,0 +1,13 @@
[package]
name = "azure-functions-durable"
license = "MIT"
version = "0.10.0"
authors = ["Peter Huene <peterhuene@protonmail.com>"]
description = "Durable Functions for Rust"
repository = "https://github.com/peterhuene/azure-functions-rs/"
homepage = "https://functions.rs"
edition = "2018"
[dependencies]
futures-preview = { version = "0.3.0-alpha.17" }
hyper = { git = "https://github.com/hyperium/hyper", rev = "1d00bb29d4f5d123ddd04d7f78de3b1a98fe7dfb" }

View File

@ -0,0 +1,2 @@
//! # Durable Functions for Rust
#![feature(async_await)]