phant 0.1.5

A library for manipulating data on a http://phant.io server.
#![crate_name = "phant"]

//! # Rust Phant Library
//!
//! This is a library to use for interacting with a [phant.io](http://phant.io) server.
//! A Phant server is hosted freely at [data.sparkfun.com](http://data.sparkfun.com).  This library
//! is hosted [on github](https://github.com/freiguy1/phant-rust).
//!
//! It was originally created as a way to learn rust by creating a functional piece
//! of software.

extern crate serde;
extern crate serde_json;
extern crate url;
#[macro_use] extern crate hyper;

pub use phant::{ StreamSpec, Phant };


pub mod error;
mod phant;
mod web;