manifold/Cargo.toml
Julius Koskela 84e5cb256a
🚀 Finish basic types and refactor (#17)
- Finished basic API's for types Tensor, TensorIndex, TensorShape, TensorError.
- Make Axis a simple wrapper type used only for clarity.
- Add documentation and doctests.

Reviewed-on: #17
Co-authored-by: Julius Koskela <julius.koskela@unikie.com>
Co-committed-by: Julius Koskela <julius.koskela@unikie.com>
2024-01-06 00:11:30 +00:00

36 lines
761 B
TOML

[package]
name = "manifold"
version = "0.1.0"
edition = "2021"
license = "MIT/Apache-2.0"
authors = ["Julius Koskela <julius.koskela@nordic-dev.net>"]
description = """
Manifold is a Tensor library for Rust.
"""
repository = "https://nordic-dev.net/julius/manifold"
keywords = ["data-structures", "algorithms", "containers"]
categories = ["data-structures", "algorithms", "mathematics", "science"]
[dependencies]
bytemuck = "1.14.0"
getset = "0.1.2"
itertools = "0.12.0"
num = "0.4.1"
rayon = "1.8.0"
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.52"
[dev-dependencies]
rand = "0.8.5"
criterion = "0.5.1"
serde_json = "1.0.108"
static_assertions = "1.1.0"
ndarray = "0.15.6"
[[bench]]
name = "manifold_benchmark"
harness = false