gapirs-common 0.0.1

Common library for gapirs
Documentation
#![allow(unused_imports)]

extern crate alloc;
extern crate core;

pub use crate::api::*;
use crate::errors::{ApiCallError, GetTokenError, StdError, StdResult};
pub use std::error::Error;
pub use std::future::Future;
pub use yup_oauth2::authenticator::Authenticator;
pub use yup_oauth2::hyper_rustls::HttpsConnector;
pub use yup_oauth2::{AccessToken, InstalledFlowAuthenticator};

pub mod api;
/// This module provides some functions that can be used as serde defaults
///
/// It is only necessary because the serde crate has no way to specify a default value for a field
/// it only allows functions. There is an issue open for this (since 2016): `https://github.com/serde-rs/serde/issues/368`
pub mod defaults;
pub mod deps;
pub mod errors;
pub mod utils;