ipcap 0.1.7

🌍 A CLI & library for decoding IP addresses into state, postal code, country, coordinates, etc without internet access.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]

#[cfg(feature = "cli")]
pub mod cli;
pub mod constants;
pub mod continents;
pub mod countries;
pub mod designated_market_area;
pub mod errors;
pub mod geo_ip_reader;
pub mod time_zones;
pub mod utils;