scirs2-sparse 0.1.3

Sparse matrix module for SciRS2 (scirs2-sparse)
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 = "2021"
name = "scirs2-sparse"
version = "0.1.3"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sparse matrix module for SciRS2 (scirs2-sparse)"
readme = "README.md"
keywords = [
    "sparse-matrix",
    "csr",
    "scientific",
    "scipy",
    "numerical",
]
categories = [
    "science",
    "mathematics",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cool-japan/scirs"

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

[features]
default = [
    "parallel",
    "random",
]
gpu = ["scirs2-core/gpu"]
parallel = ["scirs2-core/parallel"]
random = ["scirs2-core/random"]
simd = ["scirs2-core/simd"]

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.byteorder]
version = "1.5"

[dependencies.log]
version = "0.4"

[dependencies.num_cpus]
version = "1.17.0"

[dependencies.scirs2-core]
version = "0.1.3"
features = [
    "array",
    "random",
    "gpu",
]

[dependencies.sprs]
version = "0.11.4"
default-features = false

[dependencies.thiserror]
version = "2.0.17"

[dev-dependencies.approx]
version = "0.5.1"

[dev-dependencies.criterion]
version = "0.8.1"

[dev-dependencies.tempfile]
version = "3.24.0"

[lints.clippy]
expect_used = "allow"
unwrap_used = "warn"

[lints.rust]
dead_code = "allow"
mismatched_lifetime_syntaxes = "allow"
unknown_lints = "allow"
unpredictable_function_pointer_comparisons = "allow"
unused_imports = "allow"
unused_mut = "allow"
unused_variables = "allow"