1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![deny(bare_trait_objects)]

mod signer;
mod credential;
mod error;

pub use signer::Signer;
pub use credential::Credential;
pub use error::Error;

#[cfg(feature="reqwest")]
mod client;
#[cfg(feature="reqwest")]
pub use client::Client;