faer-precond 0.2.0

Numerical preconditioners (Jacobi, block-Jacobi, ILU(0), IC(0)) for iterative solvers, built on faer.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "faer-precond"
version = "0.2.0"
build = false
exclude = [
    ".github/*",
    "target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Numerical preconditioners (Jacobi, block-Jacobi, ILU(0), IC(0)) for iterative solvers, built on faer."
homepage = "https://github.com/alantheengineer/faer-precond"
documentation = "https://docs.rs/faer-precond"
readme = "README.md"
keywords = [
    "linear-algebra",
    "preconditioner",
    "sparse",
    "numerical",
    "faer",
]
categories = [
    "mathematics",
    "science",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/alantheengineer/faer-precond"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[lib]
name = "faer_precond"
path = "src/lib.rs"

[[example]]
name = "approx_inverse"
path = "examples/approx_inverse.rs"

[[example]]
name = "block_jacobi"
path = "examples/block_jacobi.rs"

[[example]]
name = "ic0"
path = "examples/ic0.rs"

[[example]]
name = "ilu0"
path = "examples/ilu0.rs"

[[example]]
name = "ilutp"
path = "examples/ilutp.rs"

[[example]]
name = "jacobi"
path = "examples/jacobi.rs"

[[example]]
name = "poly"
path = "examples/poly.rs"

[[example]]
name = "solve_precond"
path = "examples/solve_precond.rs"

[[example]]
name = "speedup"
path = "examples/speedup.rs"

[[example]]
name = "ssor"
path = "examples/ssor.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "precond"
path = "benches/precond.rs"
harness = false

[dependencies.dyn-stack]
version = "0.13"

[dependencies.faer]
version = "0.24"

[dependencies.faer-traits]
version = "0.24.0"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]