librustosa 0.1.0

Calculate Mel Frequency Cepstral Coefficients from audio data
Documentation
[package]
name = "librustosa"
version = "0.1.0"
authors = [
    "Lorenz Schmidt <bytesnake@mailbox.org>",
    "Maximilian Krüger <kruemaxi@gmail.com>",
    "Jason Duffy <jasonsduffy@gmail.com",    
]
edition = "2021"
description = "Calculate Mel Frequency Cepstral Coefficients from audio data"
keywords = ["dsp", "fft", "stream", "data", "fourier"]
license = "MIT"
categories = ["science"]
repository = "https://github.com/gentoid/librustosa"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
num-complex = "0.4"
ndarray = "^0.15"
apodize = "1.0"
num = "0.4"
strider = "0.1"

[dependencies.fftw]
version = "0.7"
optional = true
features = ["system"]
default_features = false

[dependencies.rustfft]
version = "^6.0"
optional = true

[features]
default = ["fftrust"]

fftrust = ["rustfft"]
fftextern = ["fftw/system"]

# The development profile, used for `cargo build`
[profile.dev]
opt-level = 0  # Controls the --opt-level the compiler builds with
debug = true   # Controls whether the compiler passes `-g`