[package]
edition = "2021"
rust-version = "1.81"
name = "ferroni"
version = "1.3.3"
authors = ["Sebastian Software GmbH"]
build = "build.rs"
exclude = [
".cache/",
"benches/",
"docs/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust Oniguruma regex engine with SIMD-accelerated search"
homepage = "https://sebastian-software.github.io/ferroni/"
documentation = "https://docs.rs/ferroni"
readme = "README.md"
keywords = [
"regex",
"oniguruma",
"unicode",
"pattern-matching",
"simd",
]
categories = [
"text-processing",
"parsing",
]
license = "BSD-2-Clause"
repository = "https://github.com/sebastian-software/ferroni"
[features]
ffi = ["cc"]
[lib]
name = "ferroni"
path = "src/lib.rs"
[[example]]
name = "profile_named_capture"
path = "examples/profile_named_capture.rs"
[[example]]
name = "research_ecmascript_lookbehind"
path = "examples/research_ecmascript_lookbehind.rs"
[[test]]
name = "api_test"
path = "tests/api_test.rs"
[[test]]
name = "compat_back"
path = "tests/compat_back.rs"
[[test]]
name = "compat_options"
path = "tests/compat_options.rs"
[[test]]
name = "compat_regset"
path = "tests/compat_regset.rs"
[[test]]
name = "compat_syntax"
path = "tests/compat_syntax.rs"
[[test]]
name = "compat_utf8"
path = "tests/compat_utf8.rs"
[dependencies.aho-corasick]
version = "1"
[dependencies.bitflags]
version = "2"
[dependencies.memchr]
version = "2"
[dependencies.smallvec]
version = "1"
[dev-dependencies.criterion]
version = "0.7"
features = ["html_reports"]
[dev-dependencies.criterion-codspeed]
version = "4.7"
package = "codspeed-criterion-compat"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[build-dependencies.cc]
version = "1"
optional = true
[profile.bench]
lto = "thin"
[profile.release]
lto = "thin"