-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (39 loc) · 1.07 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
45
46
47
48
49
50
[package]
name = "cyclovander"
version = "1.1.0"
authors = ["Edoardo Signorini <edoars@gmail.com>"]
edition = "2018"
description = """
Library for computing the condition number of the Vandermonde matrix associated with the nth cyclotomic polynomial.
"""
license = "Apache-2.0"
readme = "README.md"
[lib]
bench = false
[features]
default = ["intel-mkl-static"]
netlib-static = ["ndarray-linalg/netlib-static"]
netlib-system = ["ndarray-linalg/netlib-system"]
openblas-static = ["ndarray-linalg/openblas-static"]
openblas-system = ["ndarray-linalg/openblas-system"]
intel-mkl-static = ["ndarray-linalg/intel-mkl-static"]
intel-mkl-system = ["ndarray-linalg/intel-mkl-system"]
[workspace]
members = ["cli"]
default-members = [".", "cli"]
[dependencies]
ndarray = "0.15.2"
red_primality = "0.2.0"
num = "0.4.0"
[dependencies.ndarray-linalg]
version = "0.14.1"
default-features = false
[dev-dependencies.criterion]
version = "0.3.5"
features = ["html_reports"]
[dev-dependencies.pprof]
version = "0.5.0"
features = ["criterion", "flamegraph"]
[[bench]]
name = "trace"
harness = false