elastic 0.1.0

A client for the Elassticsearch REST API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Elasticsearch API Client
//! 
//! This crate is a meta-package that makes it easy to work
//! with the Elasticsearch REST API.

extern crate elastic_reqwest;
extern crate elastic_requests;
extern crate elastic_types;

pub mod client {
	pub use elastic_reqwest::*;
	pub use elastic_requests::*;
}

pub mod types {
	pub use elastic_types::*;
}