grok 2.4.1

A Rust implementation of the popular Java & Ruby grok library which allows easy text and log file processing with composable patterns.
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.77"
name = "grok"
version = "2.4.1"
authors = [
    "Matt Mastracci <matthew@mastracci.com>",
    "Michael Nitschinger <michael@nitschinger.at>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A Rust implementation of the popular Java & Ruby grok library
which allows easy text and log file processing with composable 
patterns.
"""
homepage = "https://github.com/mmastrac/grok"
documentation = "https://docs.rs/grok2"
readme = "README.md"
categories = ["text-processing"]
license = "Apache-2.0"
repository = "https://github.com/mmastrac/grok"

[features]
default = ["onig"]
fancy-regex = ["dep:fancy-regex"]
onig = ["dep:onig"]
pcre2 = ["dep:pcre2"]
regex = ["dep:regex"]

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

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

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

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

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

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

[dependencies.fancy-regex]
version = "0.14"
features = [
    "std",
    "unicode",
    "perf",
]
optional = true
default-features = false

[dependencies.onig]
version = "6.5"
optional = true
default-features = false

[dependencies.pcre2]
version = "0.2.9"
optional = true

[dependencies.regex]
version = "1"
features = [
    "std",
    "unicode",
    "perf",
    "perf-dfa-full",
]
optional = true
default-features = false

[dev-dependencies.divan]
version = "0.1.21"

[build-dependencies.glob]
version = "0.3"