-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
33 lines (27 loc) · 1.13 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
[package]
name = "vecmat"
version = "0.7.8"
authors = ["Alexey Gerasev <alexey.gerasev@gmail.com>"]
edition = "2021"
description = "Low-dimensional vector algebra with min_const_generics support"
documentation = "https://docs.rs/vecmat"
homepage = "https://github.com/agerasev/vecmat-rs"
repository = "https://github.com/agerasev/vecmat-rs"
readme = "README.md"
keywords = ["vector", "matrix", "math", "algebra", "min-const-generics"]
categories = ["algorithms", "data-structures", "science", "no-std"]
license = "MIT/Apache-2.0"
[dependencies]
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
num-complex = { version = "0.4", default-features = false, features = ["libm"] }
num-integer = { version = "0.1", default-features = false }
rand_ = { package = "rand", version = "0.8", optional = true }
approx = { version = "0.5", optional = true }
[dev-dependencies]
rand_xorshift = "0.3"
[features]
default = ["std", "rand", "approx"]
std = ["num-traits/std", "num-integer/std", "num-complex/std", "rand_/std", "approx/std"]
rand = ["rand_", "num-complex/rand"]
[package.metadata.docs.rs]
features = ["std", "rand", "approx"]