[package]
edition = "2021"
name = "tensr"
version = "0.1.3"
authors = ["Toby Davis <toby@tobydavis.dev>"]
build = false
exclude = [".github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, cross-platform, multi-backend tensor/array library for Rust"
homepage = "https://github.com/Pencilcaseman/tensr"
documentation = "https://docs.rs/tensr"
readme = "README.md"
keywords = [
"array",
"tensor",
"multidimensional",
"ndarray",
]
categories = [
"data-structures",
"science",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Pencilcaseman/tensr"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
debug-assertions = false
panic = "abort"
strip = true
[lib]
name = "tensr"
path = "src/lib.rs"
[dependencies.num-traits]
version = "0.2.19"
features = ["i128"]
[dependencies.paste]
version = "1.0"
[dependencies.rayon]
version = "1.10.0"
[dependencies.tensr_proc_macros]
version = "0.1.0"
[dev-dependencies]
[features]
[lints.clippy.inline_always]
level = "allow"
priority = 1
[lints.clippy.missing_docs]
level = "warn"
priority = 2
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1