weldrs 0.1.3

A Rust implementation of Splink- or fastLink-style probabilistic record linkage
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "weldrs"
version = "0.1.3"
authors = ["Paul Stey"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of Splink- or fastLink-style probabilistic record linkage"
readme = "README.md"
keywords = [
    "record-linkage",
    "entity-resolution",
    "fastlink",
    "deduplication",
    "splink",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT"
repository = "https://github.com/weldrs-org/weldrs"

[features]
simd = ["triple_accel"]
visualize = ["plotters"]

[lib]
name = "weldrs"
path = "src/lib.rs"

[[example]]
name = "basic_dedup"
path = "examples/basic_dedup.rs"

[[example]]
name = "explain_predictions"
path = "examples/explain_predictions.rs"

[[example]]
name = "fuzzy_matching"
path = "examples/fuzzy_matching.rs"

[[example]]
name = "model_parameters"
path = "examples/model_parameters.rs"

[[example]]
name = "save_and_load"
path = "examples/save_and_load.rs"

[[example]]
name = "scaling"
path = "examples/scaling.rs"

[[example]]
name = "visualize_charts"
path = "examples/visualize_charts.rs"
required-features = ["visualize"]

[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"

[[test]]
name = "explain"
path = "tests/explain.rs"

[[test]]
name = "serialization"
path = "tests/serialization.rs"

[[bench]]
name = "comparison_vectors"
path = "benches/comparison_vectors.rs"
harness = false

[[bench]]
name = "em_training"
path = "benches/em_training.rs"
harness = false

[[bench]]
name = "pipeline"
path = "benches/pipeline.rs"
harness = false

[[bench]]
name = "predict_bench"
path = "benches/predict_bench.rs"
harness = false

[[bench]]
name = "string_distance"
path = "benches/string_distance.rs"
harness = false

[dependencies.plotters]
version = "0.3"
features = [
    "svg_backend",
    "line_series",
]
optional = true
default-features = false

[dependencies.polars]
version = "0.46"
features = [
    "lazy",
    "cross_join",
    "round_series",
    "log",
    "dtype-u8",
    "dtype-i8",
    "dtype-i16",
    "dtype-struct",
    "random",
    "concat_str",
    "semi_anti_join",
]

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.11"

[dependencies.rustc-hash]
version = "2"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.strsim]
version = "0.11"

[dependencies.thiserror]
version = "2"

[dependencies.triple_accel]
version = "0.4"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.polars]
version = "0.46"
features = ["csv"]