Skip to content

Commit

Permalink
chore: update deps (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjrobins authored Oct 22, 2024
1 parent 16a2f4b commit b83168a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ diffsl15-0 = { package = "diffsl", version = "=0.2.0", features = ["llvm15-0"],
diffsl16-0 = { package = "diffsl", version = "=0.2.0", features = ["llvm16-0"], optional = true }
diffsl17-0 = { package = "diffsl", version = "=0.2.0", features = ["llvm17-0"], optional = true }
petgraph = "0.6.4"
faer = "0.18.2"
faer = "0.19.4"
suitesparse_sys = { version = "0.1.3", optional = true }
thiserror = "1.0.63"

[dev-dependencies]
insta = { version = "1.34.0", features = ["yaml"] }
criterion = { version = "0.4" }
criterion = { version = "0.5.1" }

[build-dependencies]
bindgen = { version = "0.69.4", optional = true }
bindgen = { version = "0.70.1", optional = true }
cc = { version = "1.0.99", optional = true }

[[bench]]
Expand Down
3 changes: 1 addition & 2 deletions src/matrix/dense_faer_serial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ use crate::FaerLU;
use crate::{Dense, DenseRef, Vector};

use faer::{
linalg::matmul::matmul, mat::As2D, mat::As2DMut, Col, ColMut, ColRef, Mat, MatMut, MatRef,
Parallelism,
linalg::matmul::matmul, mat::As2D, Col, ColMut, ColRef, Mat, MatMut, MatRef, Parallelism,
};
use faer::{unzipped, zipped};

Expand Down

0 comments on commit b83168a

Please sign in to comment.