ferrisup 0.2.5

A versatile Rust project bootstrapping tool - start anywhere, scale anywhere
Documentation
{
  "name": "gcp_serverless",
  "description": "A Rust serverless function template for Google Cloud Functions",
  "type": "binary",
  "files": [
    {
      "source": "src/main.rs",
      "target": "src/main.rs"
    },
    {
      "source": "cloudbuild.yaml",
      "target": "cloudbuild.yaml"
    },
    {
      "source": "Dockerfile",
      "target": "Dockerfile"
    }
  ],
  "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\"",
    "cloud-functions = \"0.4\"",
    "http = \"0.2\"",
    "hyper = \"0.14\"",
    "uuid = { version = \"1.3\", features = [\"v4\"] }"
  ],
  "dev-dependencies": [
    "http = \"0.2\""
  ]
}