lasprs/Cargo.toml

26 lines
572 B
TOML
Raw Normal View History

2023-11-22 13:40:16 +00:00
[package]
name = "lasprs"
version = "0.1.0"
edition = "2021"
2023-11-22 13:52:16 +00:00
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"
2023-11-22 13:57:25 +00:00
keywords = ["dsp", "audio", "measurement", "acoustics", "filter"]
2023-11-22 13:52:16 +00:00
categories = [
"multimedia::audio",
"scientific::dsp",
"scientific::engineering"]
2023-11-22 13:40:16 +00:00
[dependencies]
anyhow = "1.0.75"
ndarray = "0.15.6"
num = "0.4.1"
rayon = "1.8.0"
[features]
default = ["f64"]
f64 = []
f32 = []