2014-06-25 01:25:57 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra"
|
2021-03-01 21:25:29 +08:00
|
|
|
version = "0.25.0"
|
2016-12-05 05:44:42 +08:00
|
|
|
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
2014-06-25 01:25:57 +08:00
|
|
|
|
2021-01-29 20:33:37 +08:00
|
|
|
description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
|
|
|
|
documentation = "https://www.nalgebra.org/docs"
|
2019-06-12 02:56:50 +08:00
|
|
|
homepage = "https://nalgebra.org"
|
2021-01-29 20:33:37 +08:00
|
|
|
repository = "https://github.com/dimforge/nalgebra"
|
2014-11-23 02:51:28 +08:00
|
|
|
readme = "README.md"
|
2021-02-22 21:27:31 +08:00
|
|
|
categories = [ "science", "mathematics", "wasm", "no-std" ]
|
2018-08-31 18:57:52 +08:00
|
|
|
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
|
2021-01-29 20:33:37 +08:00
|
|
|
license = "BSD-3-Clause"
|
2019-03-23 21:29:07 +08:00
|
|
|
edition = "2018"
|
2019-02-18 01:22:29 +08:00
|
|
|
exclude = ["/ci/*", "/.travis.yml", "/Makefile"]
|
|
|
|
|
2021-01-29 20:33:37 +08:00
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
2014-08-16 18:16:26 +08:00
|
|
|
[lib]
|
2014-07-23 01:58:26 +08:00
|
|
|
name = "nalgebra"
|
|
|
|
path = "src/lib.rs"
|
2014-12-26 05:05:33 +08:00
|
|
|
|
2015-01-10 08:36:13 +08:00
|
|
|
[features]
|
2018-06-09 23:44:19 +08:00
|
|
|
default = [ "std" ]
|
2021-03-01 00:52:14 +08:00
|
|
|
std = [ "matrixmultiply", "rand/std", "rand/std_rng", "rand_distr", "simba/std" ]
|
2017-08-03 01:37:44 +08:00
|
|
|
arbitrary = [ "quickcheck" ]
|
2020-07-12 16:47:16 +08:00
|
|
|
serde-serialize = [ "serde", "num-complex/serde" ]
|
2017-08-14 22:26:36 +08:00
|
|
|
abomonation-serialize = [ "abomonation" ]
|
2018-10-21 04:27:18 +08:00
|
|
|
sparse = [ ]
|
2019-03-03 02:33:49 +08:00
|
|
|
debug = [ "approx/num-complex", "rand/std" ]
|
2018-05-24 23:17:34 +08:00
|
|
|
alloc = [ ]
|
2018-11-07 01:31:04 +08:00
|
|
|
io = [ "pest", "pest_derive" ]
|
2019-08-12 00:26:12 +08:00
|
|
|
compare = [ "matrixcompare-core" ]
|
2020-08-26 02:44:03 +08:00
|
|
|
libm = [ "simba/libm" ]
|
|
|
|
libm-force = [ "simba/libm_force" ]
|
2021-01-26 15:47:47 +08:00
|
|
|
proptest-support = [ "proptest" ]
|
2020-11-27 12:25:36 +08:00
|
|
|
no_unsound_assume_init = [ ]
|
2020-08-26 02:44:03 +08:00
|
|
|
|
2020-11-17 15:37:56 +08:00
|
|
|
# This feature is only used for tests, and enables tests that require more time to run
|
|
|
|
slow-tests = []
|
2020-08-26 02:44:03 +08:00
|
|
|
|
2014-12-26 05:05:33 +08:00
|
|
|
[dependencies]
|
2020-10-25 21:50:33 +08:00
|
|
|
typenum = "1.12"
|
|
|
|
generic-array = "0.14"
|
2021-03-01 00:52:14 +08:00
|
|
|
rand = { version = "0.8", default-features = false }
|
2021-03-01 17:02:22 +08:00
|
|
|
getrandom = { version = "0.2", default-features = false, features = [ "js" ] } # For wasm
|
2018-05-19 23:15:15 +08:00
|
|
|
num-traits = { version = "0.2", default-features = false }
|
2020-10-25 21:50:33 +08:00
|
|
|
num-complex = { version = "0.3", default-features = false }
|
|
|
|
num-rational = { version = "0.3", default-features = false }
|
|
|
|
approx = { version = "0.4", default-features = false }
|
2021-03-01 00:52:14 +08:00
|
|
|
simba = { version = "0.4", default-features = false }
|
2020-04-05 23:53:27 +08:00
|
|
|
alga = { version = "0.9", default-features = false, optional = true }
|
2021-03-01 17:02:22 +08:00
|
|
|
rand_distr = { version = "0.4", default-features = false, optional = true }
|
2021-03-01 00:52:14 +08:00
|
|
|
matrixmultiply = { version = "0.3", optional = true }
|
2020-10-29 07:05:12 +08:00
|
|
|
serde = { version = "1.0", default-features = false, features = [ "derive" ], optional = true }
|
2018-12-18 22:44:53 +08:00
|
|
|
abomonation = { version = "0.7", optional = true }
|
2018-05-19 23:15:15 +08:00
|
|
|
mint = { version = "0.5", optional = true }
|
2021-03-01 00:52:14 +08:00
|
|
|
quickcheck = { version = "1", optional = true }
|
2020-10-25 21:50:33 +08:00
|
|
|
pest = { version = "2", optional = true }
|
|
|
|
pest_derive = { version = "2", optional = true }
|
2021-02-11 12:12:09 +08:00
|
|
|
bytemuck = { version = "1.5", optional = true }
|
2019-08-12 00:26:12 +08:00
|
|
|
matrixcompare-core = { version = "0.1", optional = true }
|
2021-03-01 00:52:14 +08:00
|
|
|
proptest = { version = "1", optional = true, default-features = false, features = ["std"] }
|
2017-02-13 01:17:09 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2017-04-25 02:05:45 +08:00
|
|
|
serde_json = "1.0"
|
2021-03-01 00:52:14 +08:00
|
|
|
rand_xorshift = "0.3"
|
|
|
|
rand_isaac = "0.3"
|
2019-03-31 19:32:09 +08:00
|
|
|
### Uncomment this line before running benchmarks.
|
2019-06-08 00:54:56 +08:00
|
|
|
### We can't just let this uncommented because that would break
|
2019-03-31 19:32:09 +08:00
|
|
|
### compilation for #[no-std] because of the terrible Cargo bug
|
|
|
|
### https://github.com/rust-lang/cargo/issues/4866
|
2020-04-06 00:15:36 +08:00
|
|
|
#criterion = "0.2.10"
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-08-12 00:26:12 +08:00
|
|
|
# For matrix comparison macro
|
2021-01-26 15:48:29 +08:00
|
|
|
matrixcompare = "0.2.0"
|
2021-03-01 00:52:14 +08:00
|
|
|
itertools = "0.10"
|
2019-08-12 00:26:12 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
[workspace]
|
2020-07-14 00:44:40 +08:00
|
|
|
members = [ "nalgebra-lapack", "nalgebra-glm", "nalgebra-sparse" ]
|
2019-03-03 02:33:49 +08:00
|
|
|
|
2019-03-24 01:01:04 +08:00
|
|
|
[[bench]]
|
|
|
|
name = "nalgebra_bench"
|
|
|
|
harness = false
|
|
|
|
path = "benches/lib.rs"
|
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
lto = true
|
2020-11-10 21:46:33 +08:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
# Enable certain features when building docs for docs.rs
|
2021-01-26 15:47:47 +08:00
|
|
|
features = [ "proptest-support", "compare" ]
|