This library reads the MaxMind DB format, including the GeoIP2 and GeoLite2 databases.
To build everything:
cargo build
This crate manages its test data within a git submodule. To run the tests, you will first need to run the following command.
git submodule update --initAdd this to your Cargo.toml:
[dependencies]
maxminddb = "0.27"use maxminddb::{geoip2, Reader};
use std::net::IpAddr;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let reader = Reader::open_readfile("/path/to/GeoLite2-City.mmdb")?;
let ip: IpAddr = "89.160.20.128".parse()?;
let result = reader.lookup(ip)?;
if let Some(city) = result.decode::<geoip2::City>()? {
println!("Country: {}", city.country.iso_code.unwrap_or("N/A"));
println!("City: {}", city.city.names.english.unwrap_or("N/A"));
}
Ok(())
}See the examples directory for more usage patterns.
Optional features:
mmap: Memory-mapped file access for long-running applicationssimdutf8: SIMD-accelerated UTF-8 validationunsafe-str-decode: Skip UTF-8 validation (requires trusted data)
Enable in Cargo.toml:
[dependencies]
maxminddb = { version = "0.27", features = ["mmap"] }Note: simdutf8 and unsafe-str-decode are mutually exclusive.
The projects include benchmarks using Criterion.rs.
First you need to have a working copy of the GeoIP City database. You can fetch it from here.
Place it in the root folder as GeoIP2-City.mmdb.
Once this is done, run
cargo bench
If gnuplot is installed, Criterion.rs can generate
an HTML report displaying the results of the benchmark under
target/criterion/report/index.html.
Contributions welcome! Please fork the repository and open a pull request with your changes.
This is free software, licensed under the ISC license.