fail2ban-log-parser-core 0.1.2

Fast, zero-copy fail2ban log parser built with winnow
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.85"
name = "fail2ban-log-parser-core"
version = "0.1.2"
authors = ["Adrian Villanueva Martinez"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, zero-copy fail2ban log parser built with winnow"
homepage = "https://github.com/adrianvillanueva997/fail2ban-log-parser"
documentation = "https://docs.rs/fail2ban-log-parser-core"
readme = "README.md"
keywords = [
    "fail2ban",
    "parser",
    "log",
    "winnow",
    "security",
]
categories = [
    "parsing",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/adrianvillanueva997/fail2ban-log-parser"
resolver = "2"

[features]
debug_errors = []
parallel = ["dep:rayon"]
serde = [
    "dep:serde",
    "chrono/serde",
]

[lib]
name = "fail2ban_log_parser_core"
crate-type = ["lib"]
path = "src/lib.rs"

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

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4.44"

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

[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true

[dependencies.winnow]
version = "1.0.0"

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

[dev-dependencies.dhat]
version = "0.3"