[package]
edition = "2021"
rust-version = "1.85"
name = "santh-dedup"
version = "0.1.4"
authors = ["Santh <64453045+santhreal@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance dataset deduplication for ML training data using MinHash + LSH"
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"deduplication",
"minhash",
"lsh",
"ml",
]
categories = [
"algorithms",
"science",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhreal/dedup"
[package.metadata.santh]
status = "beta"
[features]
default = ["serde"]
serde = ["dep:serde"]
[lib]
name = "dedup"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "basic_dedup"
path = "examples/basic_dedup.rs"
[[example]]
name = "streaming_dedup"
path = "examples/streaming_dedup.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial/test_depth_adversarial.rs"
[[test]]
name = "adversarial_adversarial_dedup"
path = "tests/adversarial/adversarial_dedup.rs"
[[test]]
name = "adversarial_break_it"
path = "tests/adversarial/break_it.rs"
[[test]]
name = "adversarial_mod"
path = "tests/adversarial/mod.rs"
[[test]]
name = "audit"
path = "tests/adversarial/test_audit.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent/test_depth_concurrent.rs"
[[test]]
name = "crash"
path = "tests/crash/test_depth_crash.rs"
[[test]]
name = "integration"
path = "tests/integration/mod.rs"
[[test]]
name = "integration_integration_tests"
path = "tests/integration/integration_tests.rs"
[[test]]
name = "property"
path = "tests/property/mod.rs"
[[test]]
name = "property_invariants"
path = "tests/property/invariants.rs"
[[test]]
name = "unit"
path = "tests/unit/mod.rs"
[[test]]
name = "unit_comprehensive_tests"
path = "tests/unit/comprehensive_tests.rs"
[[test]]
name = "unit_test_impossible"
path = "tests/unit/test_impossible.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
[[bench]]
name = "minhash"
path = "benches/minhash.rs"
harness = false
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
optional = true
[dependencies.tenshift-core]
version = "0.1.1"
[dependencies.thiserror]
version = "=2.0.18"
[dependencies.tracing]
version = "=0.1.44"
[dev-dependencies.criterion]
version = "=0.5.1"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "=1.9.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[lints.rust]
missing_docs = "warn"