-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
40 lines (32 loc) · 1 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
[package]
name = "al-jabr"
version = "0.6.4"
authors = ["Matthew Plant <[email protected]>", "Øystein Hovind <[email protected]>"]
edition = "2021"
description = "An n-dimensional linear algebra library."
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/crate/al-jabr"
homepage = "https://github.com/maplant/al-jabr"
repository = "https://github.com/maplant/al-jabr"
readme = "README.md"
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
[lib]
name = "al_jabr"
[dependencies]
paste = { version = "0.1" }
mint = { version = "0.5", optional = true }
rand = { version = "0.8", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
approx = { version = "0.5", optional = true }
[features]
default = []
[[test]]
name = "serde_tests"
path = "tests/serde_tests.rs"
required-features = ["serde"]
[dev-dependencies]
serde_json = "1"
approx = "0.5"
[package.metadata.docs.rs]
# No need to clutter docs.rs with the mint converters.
features = [ "serde", "rand" ]