[package]
edition = "2021"
name = "zer-cluster"
version = "1.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Connected-components clustering and entity storage for the zer entity-resolution library"
readme = "README.md"
keywords = [
"entity-resolution",
"clustering",
"graph",
"deduplication",
]
categories = [
"algorithms",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/ZAL-Analytics/zer"
[lib]
name = "zer_cluster"
path = "src/lib.rs"
[[example]]
name = "cluster_and_store"
path = "examples/cluster_and_store.rs"
[[example]]
name = "cluster_load"
path = "examples/cluster_load.rs"
[[example]]
name = "cluster_save"
path = "examples/cluster_save.rs"
[[test]]
name = "test_clusterer"
path = "tests/test_clusterer.rs"
[[test]]
name = "test_graph"
path = "tests/test_graph.rs"
[[test]]
name = "test_store"
path = "tests/test_store.rs"
[[test]]
name = "test_threshold"
path = "tests/test_threshold.rs"
[dependencies.petgraph]
version = "0.6"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.zer-core]
version = "1.0"
[dev-dependencies.csv]
version = "1"
[dev-dependencies.tempfile]
version = "3"