rexile 0.2.4

A blazing-fast regex engine with 10-100x faster compilation and competitive matching performance - now with backtracking support, alternation with captures, non-greedy quantifiers, and more
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.70"
name = "rexile"
version = "0.2.4"
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 backtracking support, alternation with captures, non-greedy quantifiers, and more"
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 = "char_class_demo"
path = "examples/char_class_demo.rs"

[[example]]
name = "char_classes"
path = "examples/char_classes.rs"

[[example]]
name = "check_patterns"
path = "examples/check_patterns.rs"

[[example]]
name = "check_prefix"
path = "examples/check_prefix.rs"

[[example]]
name = "debug_alt_with_caps"
path = "examples/debug_alt_with_caps.rs"

[[example]]
name = "debug_alternation"
path = "examples/debug_alternation.rs"

[[example]]
name = "debug_bugs"
path = "examples/debug_bugs.rs"

[[example]]
name = "debug_capture_parse"
path = "examples/debug_capture_parse.rs"

[[example]]
name = "debug_dotstar"
path = "examples/debug_dotstar.rs"

[[example]]
name = "debug_grl_detailed"
path = "examples/debug_grl_detailed.rs"

[[example]]
name = "debug_grl_step"
path = "examples/debug_grl_step.rs"

[[example]]
name = "debug_long"
path = "examples/debug_long.rs"

[[example]]
name = "debug_nested_captures"
path = "examples/debug_nested_captures.rs"

[[example]]
name = "debug_parse_alt_caps"
path = "examples/debug_parse_alt_caps.rs"

[[example]]
name = "debug_sequence_match"
path = "examples/debug_sequence_match.rs"

[[example]]
name = "debug_simple_backtrack"
path = "examples/debug_simple_backtrack.rs"

[[example]]
name = "escape_demo"
path = "examples/escape_demo.rs"

[[example]]
name = "flags"
path = "examples/flags.rs"

[[example]]
name = "group_demo"
path = "examples/group_demo.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 = "quantifiers"
path = "examples/quantifiers.rs"

[[example]]
name = "sequence_demo"
path = "examples/sequence_demo.rs"

[[example]]
name = "test_backtracking"
path = "examples/test_backtracking.rs"

[[example]]
name = "test_charclass_backtrack"
path = "examples/test_charclass_backtrack.rs"

[[example]]
name = "test_complex"
path = "examples/test_complex.rs"

[[example]]
name = "test_dotstar_correct"
path = "examples/test_dotstar_correct.rs"

[[example]]
name = "test_dotstar_debug"
path = "examples/test_dotstar_debug.rs"

[[example]]
name = "test_dotstar_simple"
path = "examples/test_dotstar_simple.rs"

[[example]]
name = "test_escaped_braces"
path = "examples/test_escaped_braces.rs"

[[example]]
name = "test_features"
path = "examples/test_features.rs"

[[example]]
name = "test_grl_components"
path = "examples/test_grl_components.rs"

[[example]]
name = "test_grl_full_pattern"
path = "examples/test_grl_full_pattern.rs"

[[example]]
name = "test_grl_pattern"
path = "examples/test_grl_pattern.rs"

[[example]]
name = "test_issue_component"
path = "examples/test_issue_component.rs"

[[example]]
name = "test_literal_plus_capture"
path = "examples/test_literal_plus_capture.rs"

[[example]]
name = "test_parse"
path = "examples/test_parse.rs"

[[example]]
name = "test_spaces"
path = "examples/test_spaces.rs"

[[example]]
name = "test_zero_quantifier"
path = "examples/test_zero_quantifier.rs"

[[example]]
name = "unicode_props"
path = "examples/unicode_props.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"