[package]
edition = "2024"
rust-version = "1.85"
name = "marque-engine"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pipeline orchestration: core + rules → diagnostics + fixes"
readme = false
license = "Apache-2.0"
repository = "https://github.com/marquetools/marque"
resolver = "2"
[features]
batch = [
"dep:futures",
"dep:recoco-utils",
"dep:tokio",
]
default = ["batch"]
[lib]
name = "marque_engine"
path = "src/lib.rs"
[[test]]
name = "audit_completeness"
path = "tests/audit_completeness.rs"
[[test]]
name = "corpus_accuracy"
path = "tests/corpus_accuracy.rs"
[[test]]
name = "fix_pipeline"
path = "tests/fix_pipeline.rs"
[[test]]
name = "lint_pipeline"
path = "tests/lint_pipeline.rs"
[[bench]]
name = "linear_scaling"
path = "benches/linear_scaling.rs"
harness = false
[[bench]]
name = "lint_latency"
path = "benches/lint_latency.rs"
harness = false
[dependencies.aho-corasick]
version = "1.1.4"
[dependencies.futures]
version = "0.3.32"
optional = true
[dependencies.marque-capco]
version = "0.2.0"
[dependencies.marque-config]
version = "0.2.0"
[dependencies.marque-core]
version = "0.2.0"
[dependencies.marque-ism]
version = "0.2.0"
[dependencies.marque-rules]
version = "0.2.0"
[dependencies.recoco-utils]
version = "0.2.3"
features = [
"concur_control",
"fingerprint",
]
optional = true
default-features = false
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.51.1"
features = ["full"]
optional = true
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.humantime]
version = "2.3.0"
[dev-dependencies.insta]
version = "1.47.2"
features = [
"json",
"json",
]
[dev-dependencies.serde_json]
version = "1.0.149"