regexsolver 1.0.0

High-performance Rust library for building, combining, and analyzing regular expressions and finite automata
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 = "2024"
rust-version = "1.88"
name = "regexsolver"
version = "1.0.0"
authors = ["Alexandre van Beurden"]
build = false
exclude = ["/assets"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Rust library for building, combining, and analyzing regular expressions and finite automata"
homepage = "https://github.com/RegexSolver/regexsolver"
documentation = "https://docs.rs/regexsolver"
readme = "README.md"
keywords = [
    "automaton",
    "intersection",
    "union",
    "difference",
    "regex",
]
categories = [
    "text-processing",
    "mathematics",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/RegexSolver/regexsolver"

[features]
default = ["parallel"]
parallel = ["dep:rayon"]

[lib]
name = "regexsolver"
path = "src/lib.rs"

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

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

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "proptest_strategies"
path = "tests/proptest_strategies.rs"

[[test]]
name = "readme_examples"
path = "tests/readme_examples.rs"

[[test]]
name = "state_elimination_quality"
path = "tests/state_elimination_quality.rs"

[[bench]]
name = "operations"
path = "benches/operations.rs"
harness = false

[dependencies.ahash]
version = "0.8.11"

[dependencies.bit-set]
version = "0.8.0"

[dependencies.indexmap]
version = "2.13.0"

[dependencies.rayon]
version = "1.10.0"
optional = true

[dependencies.regex-charclass]
version = "1.0.3"

[dependencies.regex-syntax]
version = "0.8.5"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.regex]
version = "1.10.3"