sieve-kit 0.2.1

Structured mail filter rules engine with RFC 5228 Sieve semantics: conditions, actions, vacation/notify evaluation, IMAP flags, bounded regex
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.85"
name = "sieve-kit"
version = "0.2.1"
build = false
exclude = ["/target"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured mail filter rules engine with RFC 5228 Sieve semantics: conditions, actions, vacation/notify evaluation, IMAP flags, bounded regex"
readme = "README.md"
keywords = [
    "email",
    "mail",
    "filter",
    "sieve",
    "rules",
]
categories = ["email"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/WyattAu/sieve-kit"

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

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

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

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

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

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

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

[dependencies.regex]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.thiserror]
version = "2"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.iai-callgrind]
version = "0.16"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.serde_json]
version = "1"

[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"