//! Official Rust client for the [ipdata.info](https://ipdata.info) IP
//! geolocation, ASN, and threat-intelligence API.
//!
//! ```no_run
//! use ipdatainfo::Client;
//!
//! let client = Client::new(); // free tier; or Client::builder().api_key("KEY").build()
//! let info = client.lookup("8.8.8.8").unwrap();
//! println!("{:?} {:?}", info.city, info.country);
//! ```
pub use ;
pub use Error;
pub use ;