coder.rs
coder.rs copied to clipboard
[EXPERIMENTAL] Asynchronous Rust wrapper around the Coder Enterprise API
coder.rs
An asynchronous, pure Rust wrapper around the Coder Enterprise API.
This is currently experimental. Not all routes have been implemented and the API is expected to change.
Installation
Coder.rs has been tested to work on Rust 1.40+
Add this to your Cargo.toml's [dependencies] section:
coder = { version = "0.3", features = ["rustls"] }
Usage
Coder provides the coder::Coder
struct for creating requests.
use std::env;
use std::error::Error;
use coder::{Coder, Executor};
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let url = env::var("MANAGER_URL")?;
let api_key = env::var("API_KEY")?;
let c = Coder::new(url, api_key)?;
let res = c.users().me().execute().await?;
dbg!(res);
Ok(())
}
// [src/bin/main.rs:19] res = ApiResponse {
// headers: Headers(
// {
// "server": "openresty/1.15.8.2",
// "date": "Wed, 05 Aug 2020 05:05:11 GMT",
// "content-type": "application/json",
// "content-length": "653",
// "vary": "Accept-Encoding",
// "vary": "Origin",
// "strict-transport-security": "max-age=15724800; includeSubDomains",
// "coder-version": "1.9.0-rc1-220-gd2a04f83a",
// "x-envoy-upstream-service-time": "20",
// },
// ),
// status_code: 200,
// response: Ok(
// User {
// id: "5e876cf4-10abe9b2e54eb609c5ec1870",
// name: "Colin Adler",
// username: "colin",
// email: "[email protected]",
// dotfiles_git_uri: "",
// roles: [
// "site-manager",
// "site-auditor",
// ],
// avatar_hash: "28707dc83fdcba2cacaa3ad5e381b34b7cb37b74",
// key_regenerated_at: 2020-04-03T17:05:56.964782Z,
// created_at: 2020-04-03T17:05:56.964782Z,
// updated_at: 2020-05-29T18:10:33.532351Z,
// },
// ),
// }
Features
rustls- Uses therustlspure Rust TLS implementation. (default)rust-native-tls- Usesnative-tlsfor TLS which links against the OS default.