lavinhash 1.0.1

High-performance fuzzy hashing library implementing the DLAH (Dual-Layer Adaptive Hashing) algorithm
Documentation
[dependencies.bitvec]
version = "1.0"

[dependencies.console_error_panic_hook]
optional = true
version = "0.1"

[dependencies.js-sys]
version = "0.3"

[dependencies.libc]
version = "0.2"

[dependencies.rayon]
version = "1.8"

[dependencies.smallvec]
version = "1.11"

[dependencies.thiserror]
version = "1.0"

[dependencies.wasm-bindgen]
version = "0.2"

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

[dev-dependencies.rand]
version = "0.8"

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

[features]
default = ["console_error_panic_hook"]

[lib]
crate-type = ["cdylib", "rlib", "staticlib"]
name = "lavinhash"
path = "src/lib.rs"

[package]
authors = ["LavinHash Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "cryptography"]
description = "High-performance fuzzy hashing library implementing the DLAH (Dual-Layer Adaptive Hashing) algorithm"
documentation = "https://docs.rs/lavinhash"
edition = "2021"
homepage = "https://bdovenbird.com/lavinhash/"
keywords = ["fuzzy-hashing", "similarity", "hash", "fingerprint", "dlah"]
license = "MIT"
name = "lavinhash"
readme = "README_RUST.md"
repository = "https://github.com/RafaCalRob/lavinhash"
rust-version = "1.70"
version = "1.0.1"

[package.metadata.wasm-pack.profile.release]
wasm-opt = false

[profile.bench]
inherits = "release"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true

[target.'cfg(target_arch = "wasm32")'.dependencies.wee_alloc]
optional = true
version = "0.4"