Nice Rust libraries you should try

Nice Rust libraries you should try

If you want to see a result of such a mix, here’s hyperjson — a JSON library for Python backed by Rust’s serde. By relying on Rust’s safety and serde’s performance, you get a safe and one of the fastest JSON libraries for Python in almost no effort. Here’s a talk about that at the correct time:
There are a couple more libraries I like to use almost always, which give you a nice performance boost out of the default that Rust already providers:
regex — a Regex library that’s really fast, including compared to other programming languages.

Source: medium.com