{"id":16653764,"url":"https://github.com/mirecl/lambda-server","last_synced_at":"2026-06-25T06:31:41.786Z","repository":{"id":186915316,"uuid":"676007523","full_name":"mirecl/lambda-server","owner":"mirecl","description":"Experimental lambda runtime","archived":false,"fork":false,"pushed_at":"2023-08-08T08:26:36.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-20T04:17:31.548Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mirecl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-08T08:15:20.000Z","updated_at":"2023-08-08T08:19:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"4f4aa83e-5826-4b40-9d58-8c8129098855","html_url":"https://github.com/mirecl/lambda-server","commit_stats":null,"previous_names":["mirecl/lambda-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mirecl/lambda-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirecl%2Flambda-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirecl%2Flambda-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirecl%2Flambda-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirecl%2Flambda-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mirecl","download_url":"https://codeload.github.com/mirecl/lambda-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirecl%2Flambda-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34763481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-12T09:47:23.525Z","updated_at":"2026-06-25T06:31:41.750Z","avatar_url":"https://github.com/mirecl.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Crates.io](https://img.shields.io/crates/v/lambda-server?style=flat-square)](https://crates.io/crates/lambda-server)\n[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](LICENSE-MIT)\n\n### PROPOSAL API (`lambda_server`)\n\n```rust\nuse anyhow::Result;\nuse lambda_server::{Http, Context};\nuse serde::{Serialize, Deserialize};\nuse validator::{Validate, ValidationError};\n\n#[derive(Deserialize, Debug, Validate)]\nstruct Request {\n    #[validate(range(min = 1))]\n    pub price: i32,\n    #[validate(range(min = 1))]\n    pub quantity: i32,\n}\n\n#[derive(Serialize, Debug)]\nstruct Response {\n    pub amount: i32,\n}\n\nfn handler(ctx: Context, req: Request) -\u003e Result\u003cResponse\u003e {\n    req.validate()?;\n\n    let amount = req.price * req.quantity;\n    Ok(Response{ amount })\n}\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c()\u003e {\n    Http::run(handler).await?;\n    Ok(())\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmirecl%2Flambda-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmirecl%2Flambda-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmirecl%2Flambda-server/lists"}