I would like to use std::regex instead of RE2, to remove the dependency. Is this something you would be interested in?
I found this issue and it seems std::regex is a bit slower than RE2, is this the reason why you are using RE2?
Alternatively I could make RE2 an optional dependency like Ragel. I just don't want to put in the effort if you don't like the idea.
Hi,
I would like to use
std::regex
instead ofRE2
, to remove the dependency. Is this something you would be interested in? I found this issue and it seemsstd::regex
is a bit slower thanRE2
, is this the reason why you are usingRE2
?Alternatively I could make
RE2
an optional dependency likeRagel
. I just don't want to put in the effort if you don't like the idea.What do you think?