//! # OAuth 1.0a crate
//!//! This crate provides an oauth 1.0a client implementation.
//! It was firstly designed to interact with the Clever-Cloud's API,
//! but has been extended to be more generic.
pubuse reqwest;pubuse url;#[cfg(feature ="logging")]#[macro_use]modlogging;#[cfg(feature ="metrics")]modmetrics;pubmodsigner;pubmodcredentials;#[cfg(feature ="execute")]pubmodexecute;#[cfg(feature ="client")]pubmodclient;#[cfg(feature ="rest")]pubmodrest;#[cfg(feature ="sse")]pubmodsse;