▲ | librasteve 15 hours ago | |||||||
so Rust has no regex in the standard library, basic/fast regex under the rust-lang umbrella in a crate and fancy-regex is a 3rd party crate not having different options is the point of (batteries included) standard libraries ;-) | ||||||||
▲ | burntsushi 14 hours ago | parent [-] | |||||||
We (I am on libs-api in addition to authoring the regex crate) specifically eschewed a batteries included standard library. The fact that `regex` was its own thing was the best thing that ever happened to it. It let me iterate on its API independent of the standard library. | ||||||||
|