-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (41 loc) · 1.15 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
[package]
name = "lair"
version = "0.7.0"
description = "Linear algebra in Rust"
readme = "README.md"
documentation = "https://docs.rs/lair"
homepage = "https://github.com/vinesystems/lair"
repository = "https://github.com/vinesystems/lair"
license = "Apache-2.0"
keywords = ["linear-algebra", "matrix", "decomposition"]
categories = ["mathematics"]
authors = ["Min Kim <msk@dolbo.net>", "Min Shao <min.shao1988@gmail.com>"]
edition = "2021"
rust-version = "1.66"
exclude = ["./github"]
[features]
default = []
serialization = ["serde", "num-complex/serde"]
[dependencies]
ndarray = "0.16"
num-complex = "0.4"
num-traits = "0.2.15"
serde = { version = "1", optional = true }
thiserror = "2"
[dev-dependencies]
approx = "0.5" # Update only when ndarray updates its dependency
criterion = "0.3" # 0.5 requires rustc 1.74 or newer
ndarray = { version = "0.16", features = ["approx"] }
ndarray-rand = "0.15"
rand_isaac = "0.3"
[[bench]]
name = "geqrf"
harness = false
[[bench]]
name = "getrf"
harness = false
[[bench]]
name = "getrs"
harness = false
[packages.metadata.docs.rs]
all-features = true