lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit 68db9a85340be3bb3f56996e967b3eece5cd8b50
parent 9e27c06474417e06a5892e23b3f2b8c4250408d2
Author: triesap <tyson@radroots.org>
Date:   Fri, 10 Apr 2026 00:54:49 +0000

geocoder: update metadata

Diffstat:
Mcrates/geocoder/Cargo.toml | 4++--
Acrates/geocoder/README | 24++++++++++++++++++++++++
Dcrates/geocoder/README.md | 3---
3 files changed, 26 insertions(+), 5 deletions(-)

diff --git a/crates/geocoder/Cargo.toml b/crates/geocoder/Cargo.toml @@ -7,11 +7,11 @@ authors = [ ] rust-version.workspace = true license.workspace = true -description = "offline geocoder queries for radroots geonames datasets" +description = "Offline geocoder and place lookup queries" repository.workspace = true homepage.workspace = true documentation = "https://docs.rs/radroots_geocoder" -readme.workspace = true +readme = "README" [dependencies] rusqlite = { workspace = true, features = ["bundled", "serialize"] } diff --git a/crates/geocoder/README b/crates/geocoder/README @@ -0,0 +1,24 @@ +# radroots_geocoder + +This is the README for `radroots_geocoder`, which provides offline geocoder +queries for the `radroots` core libraries. + +## Overview + + * a `Geocoder` type that opens prepared datasets from a filesystem path or + in-memory bytes; + * reverse-geocoding queries over point coordinates with caller-supplied + options; + * country lookup, country listing, and country center helpers backed by the + same dataset; + * a `std`-based implementation over bundled GeoNames-style SQLite data. + +## Copyright + +Except as otherwise noted, all files in the `radroots_geocoder` distribution +are + + Copyright (c) 2020-2026 Tyson Lupul + +For information on usage and redistribution, and for a DISCLAIMER OF ALL +WARRANTIES, see LICENSE included in the `radroots_geocoder` distribution. diff --git a/crates/geocoder/README.md b/crates/geocoder/README.md @@ -1,3 +0,0 @@ -# radroots_geocoder - -Offline geocoder queries for the Rad Roots `geonames.db` dataset.