botocore_parser 0.1.1

Helper crate for parsing AWS JSON service definitions
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(non_snake_case)]
#![cfg_attr(feature = "serde_macros", feature(custom_derive, plugin))]
#![cfg_attr(feature = "serde_macros", plugin(serde_macros))]

extern crate serde;
extern crate serde_json;
extern crate regex;

#[cfg(feature = "serde_macros")]
include!("lib.rs.in");

#[cfg(not(feature = "serde_macros"))]
include!(concat!(env!("OUT_DIR"), "/lib.rs"));