[package]
edition = "2024"
rust-version = "1.88"
name = "quamina"
version = "0.6.0"
build = false
exclude = [
"testdata/",
"docs/",
"examples/",
"benches/",
"fuzz/",
"playground/",
".github/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast pattern-matching library for filtering JSON events"
readme = "README.md"
keywords = [
"json",
"pattern-matching",
"event-filtering",
"rules-engine",
]
categories = [
"algorithms",
"text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/baldawarishi/quamina-rs"
[features]
dhat-heap = []
[lib]
name = "quamina"
path = "src/lib.rs"
[[test]]
name = "no_alloc_nfa_step"
path = "tests/no_alloc_nfa_step.rs"
[dependencies.arc-swap]
version = "1.7"
[dependencies.fast-float2]
version = "0.2"
[dependencies.memchr]
version = "2.7"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.smallvec]
version = "1.13"
[dev-dependencies.cargo-husky]
version = "1"
features = ["user-hooks"]
default-features = false
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.dhat]
version = "0.3"
[dev-dependencies.flate2]
version = "1.0"
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.regex]
version = "1"
[lints.clippy]
assigning_clones = "allow"
doc_link_with_quotes = "allow"
doc_markdown = "allow"
format_in_format_args = "allow"
format_push_string = "allow"
ignore_without_reason = "allow"
inline_always = "allow"
manual_let_else = "allow"
missing_fields_in_debug = "allow"
needless_continue = "allow"
needless_pass_by_value = "allow"
non_send_fields_in_send_ty = "allow"
option_if_let_else = "allow"
significant_drop_tightening = "allow"
suspicious_operation_groupings = "allow"
transmute_ptr_to_ptr = "warn"
trivially_copy_pass_by_ref = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
used_underscore_binding = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"
warnings = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]
[profile.bench]
debug = 1
[profile.mutants]
debug = 0
inherits = "test"
[profile.release]
debug = 1