seqhash 0.1.3

Fast mismatch-tolerant sequence lookup with disambiguation
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 = "2021"
name = "seqhash"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast mismatch-tolerant sequence lookup with disambiguation"
readme = "README.md"
keywords = [
    "sequencing",
    "genomics",
    "hashing",
    "mismatch",
    "hamming",
]
categories = ["science::bioinformatics"]
license = "MIT"
repository = "https://github.com/noamteyssier/seqhash"

[features]
default = []
serde = [
    "dep:serde",
    "dep:bincode",
    "hashbrown/serde",
]

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

[[example]]
name = "guide-counter"
path = "examples/guide-counter.rs"

[[example]]
name = "split-seqhash-demo"
path = "examples/split-seqhash-demo.rs"

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

[dependencies.bincode]
version = "3"
optional = true

[dependencies.fxhash]
version = "0.2"

[dependencies.hashbrown]
version = "0.16"

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

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

[dev-dependencies.anyhow]
version = "1.0.100"

[dev-dependencies.binseq]
version = "0.9.0"

[dev-dependencies.clap]
version = "4.5.54"
features = ["derive"]

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

[dev-dependencies.env_logger]
version = "0.11.8"

[dev-dependencies.log]
version = "0.4.29"

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

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.wyhash]
version = "0.6"

[dev-dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]

[profile.release]