26 lines
590 B
TOML
26 lines
590 B
TOML
[package]
|
|
name = "lasprs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["J.A. de Jong <j.a.dejong@ascee.nl>"]
|
|
description = "Library for Acoustic Signal Processing (Rust edition)"
|
|
readme = "README.md"
|
|
repository = "https://code.ascee.nl/ascee/lasprs"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["dsp", "audio", "measurement", "acoustics", "power spectra", "filters"]
|
|
categories = [
|
|
"multimedia::audio",
|
|
"scientific::dsp",
|
|
"scientific::engineering"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
ndarray = "0.15.6"
|
|
num = "0.4.1"
|
|
rayon = "1.8.0"
|
|
|
|
[features]
|
|
default = ["f64"]
|
|
f64 = []
|
|
f32 = []
|