[package]
edition = "2024"
name = "ariadnetor"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tensor network library in Rust"
readme = "README.md"
keywords = [
"tensor",
"tensor-network",
"linear-algebra",
"physics",
"mps",
]
categories = [
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ultimatile/ariadnetor"
resolver = "2"
[features]
hptt = ["ariadnetor-native/hptt"]
pluggability-litmus = ["ariadnetor-tensor/pluggability-litmus"]
[lib]
name = "ariadnetor"
path = "src/lib.rs"
[[test]]
name = "einsum_tests"
path = "tests/einsum_tests.rs"
[[test]]
name = "expert"
path = "tests/expert.rs"
[[test]]
name = "host_ops"
path = "tests/host_ops.rs"
[dependencies.ariadnetor-core]
version = "0.0.2"
[dependencies.ariadnetor-linalg]
version = "0.0.2"
[dependencies.ariadnetor-native]
version = "0.0.2"
[dependencies.ariadnetor-tensor]
version = "0.0.2"
[dev-dependencies]
[lints.rust]
dead_code = "forbid"
unreachable_pub = "warn"