1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/rusoto/rusoto/master/assets/logo-square.png"
)]
#![cfg_attr(feature = "unstable", feature(proc_macro))]
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
#![cfg_attr(
    feature = "nightly-testing",
    allow(
        cyclomatic_complexity,
        used_underscore_binding,
        ptr_arg,
        suspicious_else_formatting
    )
)]
#![allow(dead_code)]
#![cfg_attr(not(feature = "unstable"), deny(warnings))]
#![deny(missing_docs)]

//! Rusoto is an [AWS](https://aws.amazon.com/) SDK for Rust.
//! A high level overview is available in `README.md` at <https://github.com/rusoto/rusoto>.

extern crate futures;
extern crate hyper;
#[cfg(feature = "rustls")]
extern crate hyper_rustls as tls;
#[cfg(feature = "native-tls")]
extern crate hyper_tls as tls;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate base64;
extern crate hex;
extern crate hmac;
extern crate md5;
pub extern crate rusoto_credential as credential;
extern crate serde;
extern crate sha2;
extern crate time;
extern crate tokio;
extern crate tokio_timer;
extern crate url;
extern crate xml;

mod client;
mod future;
mod stream;

pub mod param;
pub mod region;
pub mod request;
pub mod signature;

#[doc(hidden)]
pub use client::Client;
#[doc(hidden)]
pub mod serialization;
#[doc(hidden)]
pub mod xmlerror;
#[doc(hidden)]
pub mod xmlutil;

pub use credential::{CredentialsError, DefaultCredentialsProvider, ProvideAwsCredentials};
pub use future::RusotoFuture;
pub use region::Region;
pub use request::{DispatchSignedRequest, HttpClient, HttpConfig, HttpDispatchError};
pub use stream::ByteStream;