regexsolver 1.0.2

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.2"
authors = ["Alexandre van Beurden"]
build = false
include = [
    "/src/**/*.rs",
    "/benches/**/*.rs",
    "/examples/**/*.rs",
    "/tests/**/*.rs",
    "/tests/data/*.txt",
    "/README.md",
    "/CHANGELOG.md",
    "/LICENSE",
]
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"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[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 = "public_api"
path = "tests/public_api.rs"

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

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

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

[dependencies.indexmap]
version = "2.13.0"

[dependencies.regex-charclass]
version = "1.2.0"
features = ["ucd-16"]

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

[dependencies.tracing]
version = "0.1"

[dev-dependencies.proptest]
version = "1"
features = [
    "std",
    "bit-set",
]
default-features = false

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

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies.ahash]
version = "0.8.11"
features = [
    "std",
    "compile-time-rng",
]
default-features = false

[target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dependencies.ahash]
version = "0.8.11"

[target.'cfg(not(target_family = "wasm"))'.dependencies.rayon]
version = "1.10.0"
optional = true

[target.'cfg(not(target_family = "wasm"))'.dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[profile.bench]
codegen-units = 1