lemmeknow v0.7.0 with bytes support!
Being able to match on bytes was a requirement for API users, that is why lemmeknow is now using regex crate instead of fancy_regex to get bytes support.
But there is always a tradeoff, regex crate isn't fancy. It doesn't support look-around.
Below is the list of regex which won't compile because of using look-around.
- Internet Protocol (IP) Address Version 6
- Bitcoin (₿) Wallet Address
- American Social Security Number
- Date of Birth
- JSON Web Token (JWT)
- Amazon Web Services Access Key
- Amazon Web Services Secret Access Key
- YouTube Video ID
There are other changes for hopefully performance improvement like parsing regex.json
file at compile time.
What's Changed
New Contributors
Full Changelog: v0.6.0...v0.7.0