sparsers 0.1.1

sparerse-rs: sparse matrix computation written in rust
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.92.0"
name = "sparsers"
version = "0.1.1"
authors = ["NewBornRustacean <huiseomkim@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "sparerse-rs: sparse matrix computation written in rust"
homepage = "https://github.com/NewBornRustacean/sparsers"
documentation = "https://docs.rs/sparsers"
readme = "README.md"
keywords = [
    "sparse-matrix",
    "linear-algebra",
    "scientific-computing",
    "data-science",
]
categories = [
    "algorithms",
    "data-structures",
    "science",
]
license = "MIT"
repository = "https://github.com/NewBornRustacean/sparsers"

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

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

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

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

[dependencies.ndarray]
version = "0.17.2"
features = ["rayon"]

[dependencies.num-traits]
version = "0.2.19"

[dependencies.rayon]
version = "1.11.0"

[dependencies.thiserror]
version = "2.0.18"

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

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

[dev-dependencies.ndarray-npy]
version = "0.10.0"