[package]
edition = "2021"
name = "scirs2-numpy"
version = "0.1.4"
authors = [
"The rust-numpy Project Developers",
"PyO3 Project and Contributors <https://github.com/PyO3>",
"SciRS2 Contributors (COOLJAPAN OU) (Team KitaSan)",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PyO3-based Rust bindings of the NumPy C-API (SciRS2 fork with ndarray 0.17 support)"
documentation = "https://docs.rs/scirs2-numpy"
readme = "README.md"
keywords = [
"python",
"numpy",
"ffi",
"pyo3",
"scientific",
]
categories = [
"api-bindings",
"development-tools::ffi",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/scirs"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
half-support = ["half"]
nalgebra-support = ["nalgebra"]
[lib]
name = "scirs2_numpy"
path = "src/lib.rs"
[dependencies.half]
version = "2.7.1"
features = [
"num-traits",
"serde",
"alloc",
]
optional = true
[dependencies.libc]
version = "0.2.180"
[dependencies.nalgebra]
version = ">=0.30, <0.35"
optional = true
default-features = false
[dependencies.ndarray]
version = "0.17.2"
features = [
"std",
"serde",
"rayon",
"approx",
]
default-features = false
[dependencies.num-complex]
version = "0.4.6"
[dependencies.num-integer]
version = "0.1.46"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.pyo3]
version = "0.27.2"
features = [
"macros",
"macros",
]
default-features = false
[dependencies.rustc-hash]
version = "2.1"
[dev-dependencies.pyo3]
version = "0.27.2"
features = [
"macros",
"macros",
"auto-initialize",
]
default-features = false
[build-dependencies.pyo3-build-config]
version = "0.27"
features = ["resolve-config"]