| Crates.io | parco-geocodio |
| lib.rs | parco-geocodio |
| version | 0.1.3 |
| created_at | 2026-01-04 00:21:19.776448+00 |
| updated_at | 2026-01-08 20:14:47.174888+00 |
| description | Parco Geocoding |
| homepage | https://github.com/williamcparks/parco-geocodio |
| repository | https://github.com/williamcparks/parco-geocodio |
| max_upload_size | |
| id | 2021014 |
| size | 58,458 |
A small, async Rust client for the Geocodio API, built on top of reqwest with a type-safe builder API.
This library is intentionally minimal and focuses on:
use geocodio::GeocodioClient;
let http_client = reqwest::Client::new();
let geocodio = GeocodioClient::builder()
.client(http_client)
.api_key("YOUR_API_KEY")
.build();
let result = geocodio
.geocode()
.address("1600 Pennsylvania Ave NW, Washington, DC")
.build()
.send()
.await?;