-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) · 896 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "signal_processing"
version = "0.3.0"
edition = "2021"
license = "MIT"
description = "A signal processing library."
repository = "https://github.com/sigurd4/signal_processing"
keywords = ["signal_processing", "dsp", "dtsp", "filters", "filter-design"]
authors = ["Sigurd Sætherø Spangelo"]
readme = "README.md"
categories = ["computer-vision", "algorithms", "mathematics", "multimedia", "science"]
exclude = ["/plots", "/images", "/temp"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0.60"
moddef = "0.2.2"
array_math = {version = "0.2.44", features = ["ndarray"]}
num = "0.4.3"
option_trait = "0.1.16"
rand = "0.8.5"
ndarray = "0.15.6"
ndarray-linalg = {version = "0.16.0", features = ["intel-mkl"]}
statrs = "0.16.0"
[dev-dependencies]
plotters = "0.3.5"
linspace = "0.1.1"
image = "0.25.1"