I got 29x speedup rewriting Python’s validators library in Rust
I’ve been using Python’s validators library for a while — it’s great for quick checks without defining schemas. But it became a bottleneck when validating millions of URLs and emails in data pipelines. So I rewrote it in Rust. The results Validator Speedup ipv4 47.0x ipv6 39.4x url 35.9x email 28.5x domain 28.3x Average: 29x…