ipify-client 0.1.0

A client interface to the ipify.org IP resolution service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Rusty interface to ipify.org

extern crate futures;
extern crate hyper;
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;

mod ipify;

pub use ipify::{IP, IpifyError, get_ip};