audiofp 0.3.9

Pure-Rust audio fingerprinting and identification: Wang, Panako, Haitsma–Kalker, ONNX neural embedder, AudioSeal watermark, and streaming variants. no_std + alloc capable, bytemuck-friendly hash types.
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"
rust-version = "1.93.0"
name = "audiofp"
version = "0.3.9"
authors = ["bravo1goingdark <kumarashutosh34169@gmail.com>"]
build = false
exclude = [
    ".github/",
    ".claude/",
    ".agents/",
    "tests/assets/",
    "tests/goldens/",
    "tests/",
    "fuzz/",
    "benches/",
    "clippy.toml",
    "deny.toml",
    "rustfmt.toml",
    "rust-toolchain.toml",
    "CODE_OF_CONDUCT.md",
    "CONTRIBUTING.md",
    "SECURITY.md",
    "CHANGELOG.md",
    "context.md",
    "prep.md",
    "dsp.md",
    "USAGE.md",
    "ROBUSTNESS.md",
    "scripts/",
    "examples/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust audio fingerprinting and identification: Wang, Panako, Haitsma–Kalker, ONNX neural embedder, AudioSeal watermark, and streaming variants. no_std + alloc capable, bytemuck-friendly hash types."
readme = "README.md"
keywords = [
    "audio",
    "fingerprint",
    "no-std",
    "shazam",
    "acoustid",
]
categories = [
    "multimedia::audio",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/themankindproject/audiofp"

[features]
default = ["std"]
mimalloc = [
    "std",
    "dep:mimalloc",
]
neural = [
    "std",
    "dep:tract-onnx",
]
rayon = [
    "std",
    "dep:rayon",
]
std = ["dep:symphonia"]
watermark = [
    "std",
    "dep:tract-onnx",
]

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

[dependencies.bytemuck]
version = "1.25.0"
features = ["derive"]

[dependencies.libm]
version = "0.2.16"

[dependencies.mimalloc]
version = "0.1.50"
optional = true
default-features = false

[dependencies.num-complex]
version = "0.4.6"
default-features = false

[dependencies.num-traits]
version = "0.2.19"
default-features = false

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.realfft]
version = "3.5.0"
default-features = false

[dependencies.symphonia]
version = "0.6"
features = [
    "mp3",
    "aac",
    "flac",
    "ogg",
    "vorbis",
    "wav",
    "isomp4",
    "pcm",
    "adpcm",
    "alac",
    "mkv",
    "aiff",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "2.0.18"
default-features = false

[dependencies.tract-onnx]
version = "0.23"
optional = true
default-features = false

[dependencies.wide]
version = "1.5.0"
default-features = false

[dev-dependencies.approx]
version = "0.5.1"

[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.hound]
version = "3.5.1"

[dev-dependencies.proptest]
version = "1.5"
features = ["std"]
default-features = false

[profile.bench]
lto = "fat"
codegen-units = 1

[profile.release]
lto = "fat"
codegen-units = 1
strip = "symbols"