[package]
edition = "2021"
rust-version = "1.89"
name = "flow-gate-core"
version = "0.1.0"
authors = ["matteobroketa"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust implementation of the ISAC Gating-ML 2.0 gate evaluation engine — transforms, gates, and event matrices"
homepage = "https://github.com/matteobroketa/flow-gate.rs"
documentation = "https://docs.rs/flow-gate-core"
readme = "README.md"
keywords = [
"flow-cytometry",
"gating-ml",
"bioinformatics",
"science",
"cytometry",
]
categories = [
"science",
"mathematics",
"algorithms",
]
license = "MIT"
repository = "https://github.com/matteobroketa/flow-gate.rs"
[features]
default = []
nalgebra = ["dep:nalgebra"]
polygon_scanline = []
simd = []
[lib]
name = "flow_gate_core"
path = "src/lib.rs"
[[test]]
name = "compliance_checks"
path = "tests/compliance_checks.rs"
[[test]]
name = "gates"
path = "tests/gates.rs"
[[test]]
name = "transforms"
path = "tests/transforms.rs"
[[bench]]
name = "gate_evaluation"
path = "benches/gate_evaluation.rs"
harness = false
[[bench]]
name = "transform_throughput"
path = "benches/transform_throughput.rs"
harness = false
[dependencies.bitvec]
version = "1.0"
[dependencies.indexmap]
version = "2.2"
[dependencies.nalgebra]
version = "0.32"
optional = true
[dependencies.rayon]
version = "1.9"
[dependencies.smallvec]
version = "1.13"
features = ["union"]
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.csv]
version = "1.3"
[dev-dependencies.proptest]
version = "1.4"