Cargo Features
[dependencies]
regress = { version = "0.10.1", default-features = false, features = ["std", "backend-pikevm", "index-positions", "prohibit-unsafe", "utf16"] }
- default = backend-pikevm, std
-
These default features are set whenever
regress
is added without
somewhere in the dependency tree.default-features = false - std default
-
memchr:
The 'std' feature permits the memchr crate to use the standard library. This permits this crate to use runtime CPU feature detection to automatically accelerate searching via vector instructions. Without the standard library,
this automatic detection is not possible. - backend-pikevm default
-
Enables the PikeVM backend.
Affects
api::backends.PikeVMExecutor
… - index-positions
-
Prefers indexes to pointers for bytecode IP and string positions, for the paranoid.
Affects
position::DefPosition
… - prohibit-unsafe
-
Prohibits all uses of unsafe code, for the paranoid.
- utf16
-
Enables UTF-16 support. This disables some optimizations, so it should only be used when necessary.
Affects
indexing::Utf16Input
,indexing::Ucs2Input
,matchers::Utf16CharProperties
…