[package]
edition = "2024"
name = "thing-matcher"
version = "0.5.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 = "Deterministic and probabilistic matching of schema.org Thing records (name, alternateName, description, identifier, url, sameAs, additionalType) with explainable per-field score breakdowns."
readme = "README.md"
keywords = [
"schema-org",
"thing",
"matching",
"deduplication",
"record-linkage",
]
categories = [
"data-structures",
"science",
]
license = "MIT OR Apache-2.0 OR GPL-2.0 OR GPL-3.0 OR BSD-3-Clause"
repository = "https://github.com/sixarm/thing-matcher-rust-crate"
[lib]
name = "thing_matcher"
path = "src/lib.rs"
[[bin]]
name = "thing-matcher"
path = "src/main.rs"
[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"