Using gitea-rust-sdk with gitea.io

Rust integration

Install
cargo add gitea-rust-sdk
Quick start
use gitea_rust_sdk::Client;

let client = Client::new("YOUR_API_KEY");
Get list of organizations
curl \
  # append ?access_token=$API_KEY to the URL \
  /orgs
Get the authenticated user
curl \
  # append ?access_token=$API_KEY to the URL \
  /user
Returns the version of the Gitea application
curl \
  # append ?access_token=$API_KEY to the URL \
  /version
SDK on GitHub 📄 API Docs
SDK
gitea-rust-sdk
Rust
API
gitea.io
gitea.io
At a glance
Language Rust
Endpoints325