kingfisher/vendor/vectorscan-rs/vectorscan-rs-sys
2026-04-02 19:35:30 -07:00
..
src preparing for v1.12 2025-06-24 17:17:16 -07:00
vectorscan updated vectorscan 2026-04-02 19:35:30 -07:00
.gitattributes preparing for v1.12 2025-06-24 17:17:16 -07:00
build.rs updated vectorscan 2026-04-02 19:35:30 -07:00
Cargo.toml updated vectorscan 2026-04-02 19:35:30 -07:00
README.md updated vectorscan 2026-04-02 19:35:30 -07:00
wrapper.h preparing for v1.12 2025-06-24 17:17:16 -07:00

vectorscan-rs-sys

Overview

This crate implements minimal Rust bindings to the Vectorscan fork of Hyperscan, the high-performance regular expression engine. This crate builds a vendored copy of Vectorscan from source.

Dependencies

  • Boost >= 1.57
  • CMake
  • Optional: Clang, when building with the bindgen feature

This has been tested on x86_64 Linux, x86_64 macOS, and aarch64 macOS.

Implementation Notes

This crate was originally written as part of Nosey Parker. It was adapted from the pyperscan project, which uses Rust to expose Hyperscan to Python. (That project is released under either the Apache 2.0 or MIT license.)

The only bindings exposed at present are for Vectorscan's block-based matching APIs. The various other APIs such as stream- and vector-based matching are not exposed. Other features, such as the Chimera PCRE library, test code, benchmark code, and supporting utilities are disabled.

The source of Vectorscan 5.4.12 is included as an extracted source directory in vectorscan/.

License

This project is licensed under either of

at your option.

This project contains a vendored copy of Vectorscan, which is released under a 3-clause BSD license (LICENSE-VECTORSCAN).

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in vectorscan-rs-sys by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.