35 lines
745 B
TOML
35 lines
745 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"
|
|
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
|