Cargo Features
[dependencies]
fancy-regex = { version = "0.14.0", default-features = false, features = ["track_caller", "std", "perf", "unicode"] }
- default = perf, std, unicode
-
These default features are set whenever
fancy-regex
is added without
somewhere in the dependency tree.default-features = false - track_caller
-
Enable #[track_caller] in unit tests.
- std default
-
Enables std of bit-set, regex-automata, and regex-syntax
- perf default
-
Enables perf of regex-automata
- unicode default
-
Enables unicode of regex-automata and regex-syntax
regex-automata:
Enables all Unicode features. This expands if new Unicode features are added.