-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Version 0.6.1 * Fix * Fix swizzling * Add from impls for arrays
- Loading branch information
Showing
8 changed files
with
415 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "al-jabr" | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = ["Matthew Plant <[email protected]>", "Øystein Hovind <[email protected]>"] | ||
edition = "2021" | ||
description = "An n-dimensional linear algebra library." | ||
|
@@ -17,15 +17,14 @@ keywords = [ "linear", "algebra", "matrix", "vector", "math" ] | |
name = "al_jabr" | ||
|
||
[dependencies] | ||
paste = { version = "0.1" } | ||
mint = { version = "0.5", optional = true } | ||
paste = { version = "0.1", optional = true } | ||
rand = { version = "0.8", optional = true } | ||
serde = { version = "1", features = ["derive"], optional = true } | ||
approx = { version = "0.5", optional = true } | ||
|
||
[features] | ||
default = [] | ||
swizzle = [ "dep:paste" ] | ||
|
||
[[test]] | ||
name = "serde_tests" | ||
|
@@ -38,4 +37,4 @@ approx = "0.5" | |
|
||
[package.metadata.docs.rs] | ||
# No need to clutter docs.rs with the mint converters. | ||
features = [ "swizzle", "serde", "rand" ] | ||
features = [ "serde", "rand" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.