[[bench]]
harness = false
name = "competitors"
path = "benches/competitors.rs"
[dependencies.aho-corasick]
version = "1"
[dependencies.dynasm]
optional = true
version = "2.0"
[dependencies.dynasmrt]
optional = true
version = "2.0"
[dependencies.memchr]
version = "2"
[dev-dependencies.aho-corasick]
version = "1"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.fancy-regex]
version = "0.14"
[dev-dependencies.pcre2]
version = "0.2"
[dev-dependencies.regex]
version = "1"
[[example]]
name = "bench_compare"
path = "examples/bench_compare.rs"
[[example]]
name = "profile_cl100k"
path = "examples/profile_cl100k.rs"
[features]
default = ["simd"]
full = ["jit", "simd"]
jit = ["dynasm", "dynasmrt"]
simd = []
[lib]
name = "regexr"
path = "src/lib.rs"
[package]
authors = ["Farhan Syah"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing", "parsing"]
description = "A high-performance regex engine built from scratch with JIT compilation and SIMD acceleration"
edition = "2021"
keywords = ["regex", "jit", "simd", "pattern-matching"]
license = "MIT"
name = "regexr"
readme = "README.md"
repository = "https://github.com/farhan-syah/regexr"
version = "0.1.0-beta.5"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "engines"
path = "tests/engines.rs"
[[test]]
name = "features"
path = "tests/features.rs"
[[test]]
name = "patterns"
path = "tests/patterns.rs"
[[test]]
name = "perf_backref"
path = "tests/perf_backref.rs"
[[test]]
name = "unicode"
path = "tests/unicode.rs"