Skip to content

Commit b90468e

Browse files
authored
Merge pull request #3 from acgetchell/tests/public-api
Changed: Overhauls public API tests and examples
2 parents ff96949 + 9665d94 commit b90468e

File tree

17 files changed

+1007
-145
lines changed

17 files changed

+1007
-145
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
/target
22
/.cspellcache
3-
/coverage/*
3+
/coverage
4+
/build*
5+
/cobertura.xml
6+
.DS_Store

Cargo.lock

Lines changed: 215 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition = "2024"
55
rust-version = "1.92"
66
license = "BSD-3-Clause"
77
description = "Small, stack-allocated linear algebra for fixed dimensions"
8+
readme = "README.md"
89
repository = "https://github.com/acgetchell/la-stack"
910
categories = ["mathematics", "science"]
1011
keywords = ["linear-algebra", "geometry", "const-generics"]
@@ -13,9 +14,11 @@ keywords = ["linear-algebra", "geometry", "const-generics"]
1314
# Intentionally empty
1415

1516
[dev-dependencies]
16-
approx = "0.5"
17-
criterion = { version = "0.8", features = ["html_reports"] }
18-
nalgebra = "0.34"
17+
approx = "0.5.1"
18+
criterion = { version = "0.8.1", features = ["html_reports"] }
19+
nalgebra = "0.34.1"
20+
pastey = "0.2.0"
21+
proptest = "1.9.0"
1922

2023
[[bench]]
2124
name = "vs_nalgebra"

0 commit comments

Comments
 (0)