rust-traq
⚠️ Community Driven ⚠️ This is a client library for the traQ API, written in Rust.
This crate is updated using openapi-generator.
Example
Add this crate using cargo add traq, then write in main.rs:
use ;
use ;
async
TLS Backend
This crate depends on reqwest as an HTTPS client. As with reqwest, you can select TLS backend through this crate's feature flags.
native-tls: the system-installed TLS backendrustls-tls: the TLS library written in Rust
native-tls is used by default. To use only rustls-tls, write dependencies as:
[]
= "..."
= false
= ["rustls-tls"]
For more information, see docs in reqwest::tls.