Rust MaxMind DB Reader
This library reads the MaxMind DB format, including the GeoIP2 and GeoLite2 databases.
Building
To build everything:
cargo build
Testing
This crate manages its test data within a git submodule. To run the tests, you will first need to run the following command.
Usage
Add this to your Cargo.toml:
[]
= "0.27"
Example
use ;
use IpAddr;
See the examples directory for more usage patterns.
Features
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:
[]
= { = "0.27", = ["mmap"] }
Note: simdutf8 and unsafe-str-decode are mutually exclusive.
Documentation
Benchmarks
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.
Contributing
Contributions welcome! Please fork the repository and open a pull request with your changes.
License
This is free software, licensed under the ISC license.