-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (38 loc) · 1.48 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "pm-remez"
version = "0.1.4"
edition = "2021"
authors = ["Daniel Estevez <[email protected]>"]
description = "Parks-McClellan Remez FIR design algorithm"
license = "MIT OR Apache-2.0"
homepage = "https://maia-sdr.org/"
repository = "https://github.com/maia-sdr/pm-remez/"
keywords = ["FIR", "remez", "DSP"]
categories = ["algorithms", "mathematics", "science"]
[lib]
name = "pm_remez"
# "cdylib" is necessary to produce a shared library for Python to import from
crate-type = ["cdylib", "rlib"]
[features]
# LAPACK backend features forwarded to ndarray-linalg
openblas-static = ["ndarray-linalg/openblas-static"]
openblas-system = ["ndarray-linalg/openblas-system"]
netlib-static = ["ndarray-linalg/netlib-static"]
netlib-system = ["ndarray-linalg/netlib-system"]
intel-mkl-static = ["ndarray-linalg/intel-mkl-static"]
intel-mkl-system = ["ndarray-linalg/intel-mkl-system"]
python = ["pyo3"]
[dependencies]
itertools = "0.13"
# do not use ndarray 0.16 until ndarray-linalg has been updated to use it
ndarray = "0.15.6"
ndarray-linalg = { version = "0.16", default-features = false }
num-bigfloat = { version = "1.7.1", optional = true }
num-traits = "0.2"
pyo3 = { version = "0.23", optional = true, features = ["abi3-py38", "extension-module"] }
thiserror = "2"
[patch.crates-io]
# https://github.com/rust-ndarray/ndarray-linalg/pull/354
lax = { git = "https://github.com/mike-kfed/ndarray-linalg.git", rev="cef6aa5e95d8d595e546fe82d09e83d1e1861f5a" }
[dev-dependencies]
rustfft = "6.2"