[package]
edition = "2024"
rust-version = "1.85"
name = "irgx"
version = "2.1.2"
authors = ["The Billy Company"]
build = "build.rs"
exclude = [
"/target",
"/.cargo",
"/rust-toolchain.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Linear-time regex engine for Rust - no catastrophic backtracking, no ReDoS - plus the shared analytic substrate (row protocol, transports, contracts)."
homepage = "https://github.com/The-Billy-Company/irregex"
documentation = "https://github.com/The-Billy-Company/irregex/blob/main/bindings/rust/README.md"
readme = "PROJECT_README.md"
keywords = [
"regex",
"regexp",
"regex-engine",
"redos",
"automata",
]
categories = [
"text-processing",
"parsing",
"algorithms",
"api-bindings",
"external-ffi-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/The-Billy-Company/irregex"
[lib]
name = "irgx"
path = "src/lib.rs"
[[test]]
name = "borrows"
path = "tests/borrows.rs"
[[test]]
name = "contract"
path = "tests/contract.rs"
[[test]]
name = "faults"
path = "tests/faults.rs"
[[test]]
name = "munch"
path = "tests/munch.rs"
[[test]]
name = "oracle"
path = "tests/oracle.rs"
[[test]]
name = "planes"
path = "tests/planes.rs"
[[test]]
name = "readme"
path = "tests/readme.rs"
[[test]]
name = "semantics"
path = "tests/semantics.rs"
[[test]]
name = "sequence"
path = "tests/sequence.rs"
[[test]]
name = "set"
path = "tests/set.rs"
[[test]]
name = "surface"
path = "tests/surface.rs"
[[test]]
name = "threads"
path = "tests/threads.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.toml]
version = "1"
[lints.clippy]
undocumented_unsafe_blocks = "deny"
[lints.rust]
missing_docs = "deny"
unsafe_op_in_unsafe_fn = "deny"