resampler 0.5.0

A small audio resampling library
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.89"
name = "resampler"
version = "0.5.0"
authors = ["Nils Hasenbanck <nils@hasenbanck.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small audio resampling library"
documentation = "https://docs.rs/resampler"
readme = "README.md"
keywords = [
    "audio",
    "resampling",
    "sample-rate",
    "fft",
    "fir",
]
categories = [
    "multimedia::audio",
    "algorithms",
    "no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/hasenbanck/resampler"

[features]
no_std = ["libm"]

[lib]
name = "resampler"
path = "src/lib.rs"
bench = false

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

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

[dependencies.libm]
version = "0.2"
optional = true

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