{"id":44235363,"url":"https://github.com/mesa-dot-dev/sdk-rust","last_synced_at":"2026-02-25T06:16:48.551Z","repository":{"id":336954070,"uuid":"1146267536","full_name":"mesa-dot-dev/sdk-rust","owner":"mesa-dot-dev","description":"Mesa's Rust SDK","archived":false,"fork":false,"pushed_at":"2026-02-17T23:48:14.000Z","size":2943,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-18T04:25:37.959Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mesa-dot-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-30T21:01:12.000Z","updated_at":"2026-02-17T23:48:17.000Z","dependencies_parsed_at":"2026-02-25T05:31:06.475Z","dependency_job_id":null,"html_url":"https://github.com/mesa-dot-dev/sdk-rust","commit_stats":null,"previous_names":["mesa-dot-dev/sdk-rust"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/mesa-dot-dev/sdk-rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesa-dot-dev%2Fsdk-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesa-dot-dev%2Fsdk-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesa-dot-dev%2Fsdk-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesa-dot-dev%2Fsdk-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mesa-dot-dev","download_url":"https://codeload.github.com/mesa-dot-dev/sdk-rust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesa-dot-dev%2Fsdk-rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29812242,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-02-10T09:15:31.054Z","updated_at":"2026-02-25T06:16:48.539Z","avatar_url":"https://github.com/mesa-dot-dev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\".github/cover.png\" alt=\"mesa-dev\" width=\"100%\" /\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003emesa-dev\u003c/h1\u003e\n  \u003cp\u003e\u003cstrong\u003eRust SDK for the \u003ca href=\"https://mesa.dev\"\u003emesa.dev\u003c/a\u003e API.\u003c/strong\u003e\u003c/p\u003e\n\n  \u003ca href=\"https://crates.io/crates/mesa-dev\"\u003e\u003cimg src=\"https://img.shields.io/crates/v/mesa-dev\" alt=\"crates.io\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://docs.rs/mesa-dev\"\u003e\u003cimg src=\"https://img.shields.io/docsrs/mesa-dev\" alt=\"docs.rs\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/mesa-dot-dev/sdk-rust/blob/main/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/crates/l/mesa-dev\" alt=\"License\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/mesa-dot-dev/sdk-rust/actions/workflows/ci.yml\"\u003e\u003cimg src=\"https://img.shields.io/github/actions/workflow/status/mesa-dot-dev/sdk-rust/ci.yml?branch=main\u0026label=CI\" alt=\"CI\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://discord.gg/2vvEJFrCHV\"\u003e\u003cimg src=\"https://img.shields.io/badge/Discord-Join%20us-5865F2?logo=discord\u0026logoColor=white\" alt=\"Discord\" /\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n---\n\n## Install\n\n```sh\ncargo add mesa-dev\n```\n\n## Quick Start\n\n```rust\nuse mesa_dev::apis::configuration::Configuration;\nuse mesa_dev::apis::repos_api;\n\nlet config = Configuration {\n    bearer_access_token: Some(\"your-token\".to_string()),\n    ..Configuration::default()\n};\n\nlet repos = repos_api::get_by_org_repos(\u0026config, \"my-org\", None, None).await?;\n```\n\n## Documentation\n\nFull API reference is available on [docs.rs](https://docs.rs/mesa-dev/latest/mesa_dev/).\n\n## Authentication\n\nThe SDK supports three authentication methods via the `Configuration` struct:\n\n**Bearer token** (most common):\n\n```rust\nlet config = Configuration {\n    bearer_access_token: Some(\"your-token\".to_string()),\n    ..Configuration::default()\n};\n```\n\n**Basic auth**:\n\n```rust\nlet config = Configuration {\n    basic_auth: Some((\"username\".to_string(), Some(\"password\".to_string()))),\n    ..Configuration::default()\n};\n```\n\n**API key**:\n\n```rust\nuse mesa_dev::apis::configuration::{ApiKey, Configuration};\n\nlet config = Configuration {\n    api_key: Some(ApiKey {\n        prefix: Some(\"Bearer\".to_string()),\n        key: \"your-api-key\".to_string(),\n    }),\n    ..Configuration::default()\n};\n```\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmesa-dot-dev%2Fsdk-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmesa-dot-dev%2Fsdk-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmesa-dot-dev%2Fsdk-rust/lists"}