Release v0.32.6
This commit is contained in:
parent
f8cb672280
commit
64e97c85d5
622
CHANGELOG.md
622
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
84
Cargo.toml
84
Cargo.toml
|
@ -1,15 +1,15 @@
|
||||||
[package]
|
[package]
|
||||||
name = "nalgebra"
|
name = "nalgebra"
|
||||||
version = "0.32.5"
|
version = "0.32.6"
|
||||||
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
authors = ["Sébastien Crozet <developer@crozet.re>"]
|
||||||
|
|
||||||
description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
|
description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
|
||||||
documentation = "https://www.nalgebra.org/docs"
|
documentation = "https://www.nalgebra.org/docs"
|
||||||
homepage = "https://nalgebra.org"
|
homepage = "https://nalgebra.org"
|
||||||
repository = "https://github.com/dimforge/nalgebra"
|
repository = "https://github.com/dimforge/nalgebra"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
categories = [ "science", "mathematics", "wasm", "no-std" ]
|
categories = ["science", "mathematics", "wasm", "no-std"]
|
||||||
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
|
keywords = ["linear", "algebra", "matrix", "vector", "math"]
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
exclude = ["/ci/*", "/.travis.yml", "/Makefile"]
|
exclude = ["/ci/*", "/.travis.yml", "/Makefile"]
|
||||||
|
@ -22,57 +22,57 @@ name = "nalgebra"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "std", "macros" ]
|
default = ["std", "macros"]
|
||||||
std = [ "matrixmultiply", "simba/std" ]
|
std = ["matrixmultiply", "simba/std"]
|
||||||
sparse = [ ]
|
sparse = []
|
||||||
debug = [ "approx/num-complex", "rand" ]
|
debug = ["approx/num-complex", "rand"]
|
||||||
alloc = [ ]
|
alloc = []
|
||||||
io = [ "pest", "pest_derive" ]
|
io = ["pest", "pest_derive"]
|
||||||
compare = [ "matrixcompare-core" ]
|
compare = ["matrixcompare-core"]
|
||||||
libm = [ "simba/libm" ]
|
libm = ["simba/libm"]
|
||||||
libm-force = [ "simba/libm_force" ]
|
libm-force = ["simba/libm_force"]
|
||||||
macros = [ "nalgebra-macros" ]
|
macros = ["nalgebra-macros"]
|
||||||
cuda = [ "cust_core", "simba/cuda" ]
|
cuda = ["cust_core", "simba/cuda"]
|
||||||
|
|
||||||
|
|
||||||
# Conversion
|
# Conversion
|
||||||
convert-mint = [ "mint" ]
|
convert-mint = ["mint"]
|
||||||
convert-bytemuck = [ "bytemuck" ]
|
convert-bytemuck = ["bytemuck"]
|
||||||
convert-glam014 = [ "glam014" ]
|
convert-glam014 = ["glam014"]
|
||||||
convert-glam015 = [ "glam015" ]
|
convert-glam015 = ["glam015"]
|
||||||
convert-glam016 = [ "glam016" ]
|
convert-glam016 = ["glam016"]
|
||||||
convert-glam017 = [ "glam017" ]
|
convert-glam017 = ["glam017"]
|
||||||
convert-glam018 = [ "glam018" ]
|
convert-glam018 = ["glam018"]
|
||||||
convert-glam019 = [ "glam019" ]
|
convert-glam019 = ["glam019"]
|
||||||
convert-glam020 = [ "glam020" ]
|
convert-glam020 = ["glam020"]
|
||||||
convert-glam021 = [ "glam021" ]
|
convert-glam021 = ["glam021"]
|
||||||
convert-glam022 = [ "glam022" ]
|
convert-glam022 = ["glam022"]
|
||||||
convert-glam023 = [ "glam023" ]
|
convert-glam023 = ["glam023"]
|
||||||
convert-glam024 = [ "glam024" ]
|
convert-glam024 = ["glam024"]
|
||||||
convert-glam025 = [ "glam025" ]
|
convert-glam025 = ["glam025"]
|
||||||
convert-glam027 = [ "glam027" ]
|
convert-glam027 = ["glam027"]
|
||||||
|
|
||||||
# Serialization
|
# Serialization
|
||||||
## To use serde in a #[no-std] environment, enable the
|
## To use serde in a #[no-std] environment, enable the
|
||||||
## `serde-serialize-no-std` feature instead of `serde-serialize`.
|
## `serde-serialize-no-std` feature instead of `serde-serialize`.
|
||||||
## Serialization of dynamically-sized matrices/vectors require
|
## Serialization of dynamically-sized matrices/vectors require
|
||||||
## `serde-serialize`.
|
## `serde-serialize`.
|
||||||
serde-serialize-no-std = [ "serde", "num-complex/serde" ]
|
serde-serialize-no-std = ["serde", "num-complex/serde"]
|
||||||
serde-serialize = [ "serde-serialize-no-std", "serde/std" ]
|
serde-serialize = ["serde-serialize-no-std", "serde/std"]
|
||||||
rkyv-serialize-no-std = [ "rkyv/size_32" ]
|
rkyv-serialize-no-std = ["rkyv/size_32"]
|
||||||
rkyv-serialize = [ "rkyv-serialize-no-std", "rkyv/std", "rkyv/validation" ]
|
rkyv-serialize = ["rkyv-serialize-no-std", "rkyv/std", "rkyv/validation"]
|
||||||
|
|
||||||
# Randomness
|
# Randomness
|
||||||
## To use rand in a #[no-std] environment, enable the
|
## To use rand in a #[no-std] environment, enable the
|
||||||
## `rand-no-std` feature instead of `rand`.
|
## `rand-no-std` feature instead of `rand`.
|
||||||
rand-no-std = [ "rand-package" ]
|
rand-no-std = ["rand-package"]
|
||||||
rand = [ "rand-no-std", "rand-package/std", "rand-package/std_rng", "rand_distr" ]
|
rand = ["rand-no-std", "rand-package/std", "rand-package/std_rng", "rand_distr"]
|
||||||
|
|
||||||
# Tests
|
# Tests
|
||||||
arbitrary = [ "quickcheck" ]
|
arbitrary = ["quickcheck"]
|
||||||
proptest-support = [ "proptest" ]
|
proptest-support = ["proptest"]
|
||||||
slow-tests = []
|
slow-tests = []
|
||||||
rkyv-safe-deser = [ "rkyv-serialize", "rkyv/validation" ]
|
rkyv-safe-deser = ["rkyv-serialize", "rkyv/validation"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nalgebra-macros = { version = "0.2.1", path = "nalgebra-macros", optional = true }
|
nalgebra-macros = { version = "0.2.1", path = "nalgebra-macros", optional = true }
|
||||||
|
@ -86,7 +86,7 @@ simba = { version = "0.8", default-features = false }
|
||||||
alga = { version = "0.9", default-features = false, optional = true }
|
alga = { version = "0.9", default-features = false, optional = true }
|
||||||
rand_distr = { version = "0.4", default-features = false, optional = true }
|
rand_distr = { version = "0.4", default-features = false, optional = true }
|
||||||
matrixmultiply = { version = "0.3", optional = true }
|
matrixmultiply = { version = "0.3", optional = true }
|
||||||
serde = { version = "1.0", default-features = false, features = [ "derive" ], optional = true }
|
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
|
||||||
rkyv = { version = "0.7.41", default-features = false, optional = true }
|
rkyv = { version = "0.7.41", default-features = false, optional = true }
|
||||||
mint = { version = "0.5", optional = true }
|
mint = { version = "0.5", optional = true }
|
||||||
quickcheck = { version = "1", optional = true }
|
quickcheck = { version = "1", optional = true }
|
||||||
|
@ -116,14 +116,14 @@ serde_json = "1.0"
|
||||||
rand_xorshift = "0.3"
|
rand_xorshift = "0.3"
|
||||||
rand_isaac = "0.3"
|
rand_isaac = "0.3"
|
||||||
criterion = { version = "0.4", features = ["html_reports"] }
|
criterion = { version = "0.4", features = ["html_reports"] }
|
||||||
nalgebra = { path = ".", features = ["debug", "compare", "rand", "macros"]}
|
nalgebra = { path = ".", features = ["debug", "compare", "rand", "macros"] }
|
||||||
|
|
||||||
# For matrix comparison macro
|
# For matrix comparison macro
|
||||||
matrixcompare = "0.3.0"
|
matrixcompare = "0.3.0"
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [ "nalgebra-lapack", "nalgebra-glm", "nalgebra-sparse", "nalgebra-macros" ]
|
members = ["nalgebra-lapack", "nalgebra-glm", "nalgebra-sparse", "nalgebra-macros"]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
|
|
Loading…
Reference in New Issue