[package]
edition = "2021"
name = "sparse_npz"
version = "0.1.0"
authors = ["Daniel Strecker"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reader and writer for SciPy sparse matrices saved in the NumPy .npz format (CSC and CSR)."
readme = "README.md"
keywords = [
"scipy",
"sparse",
"npz",
"numpy",
"csc",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/daniel-x/sparse_npz"
[lib]
name = "sparse_npz"
path = "src/lib.rs"
[[example]]
name = "npz_dtype"
path = "examples/npz_dtype.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.zip]
version = "2"
features = [
"deflate",
"zstd",
]
default-features = false