Closed
Description
README.md
explains that one can disable default features to reduce binary size, but it is practically impossible with large dependency tree. As long as one of the crates includes regex
crate without specifying default-features = false
, perf
feature is enabled. To disable it, you have to go to each dependency maintainer and convince them to disable default features.
For such a widely used library it makes sense to disable these features by default and let application maintainers enable it if they want. Some libraries may also enable "unicode", but only if they really depend on it.