diff --git a/Cargo.toml b/Cargo.toml index 75c9cb5..be3bec0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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]] diff --git a/src/matrix/dense_faer_serial.rs b/src/matrix/dense_faer_serial.rs index 822bf0d..871831c 100644 --- a/src/matrix/dense_faer_serial.rs +++ b/src/matrix/dense_faer_serial.rs @@ -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};