ferray-core 0.2.3

N-dimensional array type and foundational primitives for ferray
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.85"
name = "ferray-core"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "N-dimensional array type and foundational primitives for ferray"
homepage = "https://github.com/dollspace-gay/ferray"
readme = "README.md"
keywords = [
    "numpy",
    "ndarray",
    "scientific-computing",
    "simd",
    "linear-algebra",
]
categories = [
    "science",
    "mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dollspace-gay/ferray"
resolver = "2"

[features]
const_shapes = []
default = ["std"]
f16 = ["dep:half"]
no_std = []
serde = [
    "dep:serde",
    "ndarray/serde",
]
std = []

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

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

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

[dependencies.ferray-core-macros]
version = "0.2.3"

[dependencies.half]
version = "2.4"
optional = true

[dependencies.ndarray]
version = "0.17"

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

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

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.proptest]
version = "1.6"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]