[package]
edition = "2021"
rust-version = "1.70"
name = "rexile"
version = "0.4.7"
authors = ["Ton That Vu <ttvuhm@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A blazing-fast regex engine with 10-100x faster compilation and competitive matching performance - now with range quantifiers {n,m}, case-insensitive (?i), and full production-ready features"
homepage = "https://github.com/KSD-CO/rexile"
documentation = "https://docs.rs/rexile"
readme = "README.md"
keywords = [
"regex",
"pattern",
"matching",
"parser",
"lexer",
]
categories = [
"text-processing",
"parsing",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/KSD-CO/rexile"
[lib]
name = "rexile"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "check_patterns"
path = "examples/check_patterns.rs"
[[example]]
name = "log_processing"
path = "examples/log_processing.rs"
[[example]]
name = "perf_compare"
path = "examples/perf_compare.rs"
[[example]]
name = "perf_micro"
path = "examples/perf_micro.rs"
[[example]]
name = "performance"
path = "examples/performance.rs"
[[example]]
name = "production_ready_test"
path = "examples/production_ready_test.rs"
[[test]]
name = "group_integration_tests"
path = "tests/group_integration_tests.rs"
[[test]]
name = "test_captures"
path = "tests/test_captures.rs"
[[test]]
name = "test_lookaround"
path = "tests/test_lookaround.rs"
[[test]]
name = "test_word_boundaries"
path = "tests/test_word_boundaries.rs"
[[bench]]
name = "bench_rexile"
path = "benches/bench_rexile.rs"
[[bench]]
name = "rexile_benchmark"
path = "benches/rexile_benchmark.rs"
harness = false
[dependencies.aho-corasick]
version = "1.1"
[dependencies.memchr]
version = "2.7"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.regex]
version = "1"