Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
subscriber: disable regex dependency default features (#899)
The regex dependency is used only to parse configuration directives, and therefore is not performance critical. This change turns off all default features (except 'std') from regex in order to optimize for compile times for this non-performance-critical code. Note that due to the presence of the 'criterion' dependency (which has its own default-features dependency on regex), the tests do not normally run with only the minimal set of regex features. I did remove the criterion dependency to verify that tests build, but I'm not sure how to test that we're not using disabled regex features on an ongoing basis. Co-authored-by: Bryan Donlan <[email protected]>
- Loading branch information