forked from maplant/al-jabr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (33 loc) · 1023 Bytes
/
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
[package]
name = "aljabar"
version = "1.0.1"
authors = ["Matthew Plant <[email protected]>", "Øystein Hovind <[email protected]>"]
edition = "2018"
description = "A super generic, super experimental linear algebra library."
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/crate/aljabar"
homepage = "https://github.com/maplant/aljabar"
repository = "https://github.com/maplant/aljabar"
readme = "README.md"
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
[lib]
name = "aljabar"
[dependencies]
mint = { version = "0.5", optional = true }
paste = "0.1"
rand = { version = "0.7", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
smallvec = "0.6"
[features]
default = []
swizzle = []
[[test]]
name = "serde_tests"
path = "tests/serde_tests.rs"
required-features = ["serde"]
[dev-dependencies]
serde_json = "1.0"
approx = "0.3.2"
[package.metadata.docs.rs]
# No need ot clutter docs.rs with the mint converters.
features = [ "swizzle", "serde", "rand" ]