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

[dependencies]
regex = "1"
serde = { version = "1", features = ["derive"] }
thiserror = "2"

[dev-dependencies]
criterion = { version = "0.5" }
iai-callgrind = "0.16"
proptest = "1"
serde_json = "1"

[[bench]]
name = "eval_bench"
harness = false

# Deterministic CI perf gate (instruction counts under valgrind). Not run
# locally unless valgrind is installed; see benches/iai_eval.rs.
[[bench]]
name = "iai_eval"
harness = false

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