I noticed that this project has a transitive dependency on the regex crate via arrow-string. Apparently the purpose of this is to allow you to run queries on a string column to see whether they match a regex. I am not using this functionality, yet regex is unconditionally pulled, resulting in bloated compile times and build sizes. Please put this behind a (perhaps default) feature flag so we aren't unnecessarily pulling this heavy dependency.
I noticed that this project has a transitive dependency on the regex crate via
arrow-string. Apparently the purpose of this is to allow you to run queries on a string column to see whether they match a regex. I am not using this functionality, yetregexis unconditionally pulled, resulting in bloated compile times and build sizes. Please put this behind a (perhaps default) feature flag so we aren't unnecessarily pulling this heavy dependency.