ferrisup 0.2.5

A versatile Rust project bootstrapping tool - start anywhere, scale anywhere
Documentation
{
  "name": "azure_serverless",
  "description": "A Rust serverless function template for Azure Functions",
  "type": "binary",
  "files": [
    {
      "source": "src/main.rs",
      "target": "src/main.rs"
    },
    {
      "source": "host.json",
      "target": "host.json"
    },
    {
      "source": "function.json",
      "target": "function.json"
    }
  ],
  "dependencies": [
    "serde = { version = \"1.0\", features = [\"derive\"] }",
    "serde_json = \"1.0\"",
    "tokio = { version = \"1.36\", features = [\"macros\", \"rt-multi-thread\"] }",
    "anyhow = \"1.0\"",
    "tracing = \"0.1\"",
    "tracing-subscriber = \"0.3\"",
    "azure_functions = \"0.46\"",
    "http = \"0.2\"",
    "hyper = \"0.14\"",
    "uuid = { version = \"1.3\", features = [\"v4\"] }"
  ],
  "dev-dependencies": [
    "http = \"0.2\""
  ]
}