[package]
edition = "2024"
name = "worker-matcher"
version = "0.3.0"
authors = ["Joel Parker Henderson <joel@joelparkerhenderson.com>"]
build = false
include = [
"src/**/*",
"LICENSE.md",
"README.md",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Worker matcher for healthcare information exchange: deterministic and probabilistic matching with multinational national identifiers (UK NHS / FR NIR / ES TSI / IE IHI / UK NI H&C / US SSN), E.164 phone normalisation, address parsing, nickname dictionary, email scoring, and explainable per-field breakdowns."
readme = "README.md"
keywords = [
"worker",
"matching",
"healthcare",
"identity",
"fhir",
]
categories = [
"science",
"data-structures",
"value-formatting",
]
license = "MIT OR Apache-2.0 OR GPL-2.0 OR GPL-3.0 OR BSD-3-Clause"
repository = "https://github.com/sixarm/worker-matcher-rust-crate"
[lib]
name = "worker_matcher"
path = "src/lib.rs"
[[bin]]
name = "worker-matcher"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.nhs-number]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.soundex]
version = "0.2"
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.5"