postal-code
postal-code is a robust, production-grade Rust library for validating and manipulating international postal codes. It supports a variety of countries, including the USA, Canada, UK, France, Germany, and Italy, with the flexibility to add more.
This crate offers:
- Strongly typed
Countryintegration from an externalcountrycrate. - Compile-time verified regular expressions for each supported country's postal code format.
- Builder patterns (
derive_builder) for safer, more ergonomic construction ofPostalCodeandPostalCodeCollectioninstances. - A modular, extensible validator system using traits and macros to easily add new countries.
- Comprehensive error handling via a well-structured
PostalCodeConstructionErrortype. - A robust test suite that covers valid and invalid postal codes, edge cases, and collection handling.
Key Features:
- Type-Safe: Each postal code is associated with a
Countryenum variant, ensuring that once created, it is guaranteed to be valid for that country. - Extensible: Add new countries by defining regex patterns and calling a macro to generate validators.
- Error Handling: Strong, typed errors (
PostalCodeConstructionError) avoid stringly-typed error handling. - Testing and Reliability: Thorough tests ensure that edge cases and invalid inputs are handled correctly.
Usage Example:
use PostalCode;
use Country;
Testing:
Run the test suite with:
This will run an extensive battery of tests, including correctness checks for various countries, invalid inputs, and builder patterns.
Contributing:
Contributions are welcome! Please open issues or submit pull requests on the project’s GitHub repository.
License:
postal-code is licensed under the MIT license. See LICENSE for details.