rumpy 0.1.0

A reimplementation of NumPy for use with rustpython in embedded interpreters
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"
name = "rumpy"
version = "0.1.0"
authors = ["Bowan Foryt <bowan@valstad.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A reimplementation of NumPy for use with rustpython in embedded interpreters"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/oh-yes-0-fps/rumpy"

[features]
default = []
safe-locks = ["rustpython-vm/threading"]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.half]
version = "2"
features = ["num-traits"]

[dependencies.ndarray]
version = "0.17.2"

[dependencies.no-panic]
version = "0.1.36"

[dependencies.num-complex]
version = "0.4"

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

[dependencies.rustfft]
version = "6"

[dependencies.rustpython-vm]
version = "0.5.0"
features = ["compiler"]
default-features = false

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

[dev-dependencies.numpy]
version = "0.28"

[dev-dependencies.pyo3]
version = "0.28"
features = ["auto-initialize"]

[dev-dependencies.rustpython-vm]
version = "0.5.0"
features = [
    "compiler",
    "stdio",
]
default-features = false