{"id":15136583,"url":"https://github.com/appwrite/sdk-for-rust","last_synced_at":"2026-05-02T04:01:12.498Z","repository":{"id":46658052,"uuid":"347039228","full_name":"appwrite/sdk-for-rust","owner":"appwrite","description":"[READ-ONLY] Official Appwrite Rust SDK ⚙️","archived":false,"fork":false,"pushed_at":"2026-05-01T15:16:14.000Z","size":335,"stargazers_count":31,"open_issues_count":1,"forks_count":4,"subscribers_count":14,"default_branch":"main","last_synced_at":"2026-05-01T16:31:35.773Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/appwrite.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-03-12T11:14:05.000Z","updated_at":"2026-04-16T12:47:19.000Z","dependencies_parsed_at":"2022-07-20T07:02:19.959Z","dependency_job_id":null,"html_url":"https://github.com/appwrite/sdk-for-rust","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/appwrite/sdk-for-rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fsdk-for-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fsdk-for-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fsdk-for-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fsdk-for-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/appwrite","download_url":"https://codeload.github.com/appwrite/sdk-for-rust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fsdk-for-rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32522252,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"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":["hacktoberfest"],"created_at":"2024-09-26T06:23:27.646Z","updated_at":"2026-05-02T04:01:12.491Z","avatar_url":"https://github.com/appwrite.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Appwrite Rust SDK\n\n![License](https://img.shields.io/github/license/appwrite/sdk-for-rust.svg)\n![Version](https://img.shields.io/badge/api%20version-1.9.2-blue.svg)\n[![Crates.io](https://img.shields.io/crates/v/appwrite.svg)](https://crates.io/crates/appwrite)\n[![Documentation](https://docs.rs/appwrite/badge.svg)](https://docs.rs/appwrite)\n\n**This SDK is compatible with Appwrite server version 1.9.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-rust/releases).**\n\nAppwrite is an open-source backend as a service server that abstracts and simplifies complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Rust SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)\n\n![Appwrite](https://github.com/appwrite/appwrite/raw/main/public/images/github.png)\n\n## Installation\n\nAdd this to your `Cargo.toml`:\n\n```toml\n[dependencies]\nappwrite = \"0.4.0\"\ntokio = { version = \"1.48\", features = [\"full\"] }\n```\n\nOr using `cargo add`:\n\n```bash\ncargo add appwrite\n```\n\n\n## Getting Started\n\n### Init your SDK\nInitialize your SDK with your Appwrite server API endpoint and project ID which can be found on your project settings page and your new API secret Key from project's API keys section.\n\n```rust\nuse appwrite::client::Client;\n\nlet client = Client::new()\n    .set_endpoint(\"https://[HOSTNAME_OR_IP]/v1\") // Your API Endpoint\n    .set_project(\"5df5acd0d48c2\") // Your project ID\n    .set_key(\"919c2d18fb5d4...a2ae413da83346ad2\") // Your secret API key\n    .set_self_signed(true); // Use only on dev mode with a self-signed SSL cert\n```\n\n### Make Your First Request\nOnce your SDK object is set, create any of the Appwrite service objects and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the [API References](https://appwrite.io/docs) section.\n\n```rust\nuse appwrite::client::Client;\nuse appwrite::services::users::Users;\nuse appwrite::id::ID;\n\nlet client = Client::new()\n    .set_endpoint(\"https://[HOSTNAME_OR_IP]/v1\")\n    .set_project(\"5df5acd0d48c2\")\n    .set_key(\"919c2d18fb5d4...a2ae413da83346ad2\")\n    .set_self_signed(true);\n\nlet users = Users::new(\u0026client);\n\nlet user = users.create(\n    ID::unique(),\n    Some(\"email@example.com\"),\n    Some(\"+123456789\"),\n    Some(\"password\"),\n    Some(\"Walter O'Brien\"),\n).await?;\n\nprintln!(\"{}\", user.name);\nprintln!(\"{}\", user.email);\n```\n\n### Error Handling\nThe Appwrite Rust SDK returns `Result` types. You can handle errors using standard Rust error handling patterns. Below is an example.\n\n```rust\nuse appwrite::error::AppwriteError;\n\nmatch users.create(\n    ID::unique(),\n    Some(\"email@example.com\"),\n    Some(\"+123456789\"),\n    Some(\"password\"),\n    Some(\"Walter O'Brien\"),\n).await {\n    Ok(user) =\u003e println!(\"{}\", user.name),\n    Err(AppwriteError { message, code, .. }) =\u003e {\n        eprintln!(\"Error {}: {}\", code, message);\n    }\n}\n```\n\n### Learn more\nYou can use the following resources to learn more and get help\n- 🚀 [Getting Started Tutorial](https://appwrite.io/docs/getting-started-for-server)\n- 📜 [Appwrite Docs](https://appwrite.io/docs)\n- 💬 [Discord Community](https://appwrite.io/discord)\n\n\n## Contribution\n\nThis library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.\n\n## License\n\nPlease see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappwrite%2Fsdk-for-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappwrite%2Fsdk-for-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappwrite%2Fsdk-for-rust/lists"}