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
//! Client library for Amazon Marketplace Web Service (Amazon MWS)
//!

extern crate base64;
extern crate chrono;
extern crate crypto;
extern crate failure;
extern crate reqwest;
extern crate url;
extern crate xml;
#[macro_use]
extern crate failure_derive;
extern crate csv;
extern crate serde;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate mws_derive;

#[cfg(test)]
extern crate dotenv;

pub mod result;
#[macro_use]
pub mod xmlhelper;
mod types;
#[macro_use]
mod macros;
#[macro_use]
pub mod tdff;
pub mod client;
mod sign;

// pub mod products;
pub mod feeds;
pub mod fulfillment_inbound_shipment;
pub mod fulfillment_inventory;
pub mod fulfillment_outbound;
pub mod merchant_fulfillment;
pub mod orders;
pub mod reports;

pub use self::types::SerializeMwsParams;