whois-rs Build status

a whois client library, inspired by https://github.com/hjr265/node-whois

Example

```rust extern crate whois; extern crate rustc_serialize;

use whois::WhoIs; use rustc_serialize::json::Json;

fn main() { let data = WhoIs::new("google.com".toowned()).lookup(); let foo = &Json::fromstr(&data.unwrap()).unwrap(); let object = foo.as_object().unwrap(); for (key, value) in object { println!("{}: {}", key, match *value { Json::String(ref v) => format!("{}", v), _ => break }); } } ```

TODO