[package]
edition = "2021"
rust-version = "1.82"
name = "tblis"
version = "0.2.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TBLIS wrapper in Rust"
readme = "readme.md"
keywords = [
"ffi",
"chemistry",
"tensor",
]
categories = ["science"]
license = "Apache-2.0"
repository = "https://github.com/RESTGroup/tblis-rs"
[package.metadata.docs.rs]
features = ["ndarray"]
rustdoc-args = [
"--cfg",
"docsrs",
"--html-in-header",
"katex-header.html",
]
[features]
default = []
dynamic_loading = ["tblis-ffi/dynamic_loading"]
ndarray = ["dep:ndarray"]
[lib]
name = "tblis"
path = "src/lib.rs"
[[test]]
name = "bench_contig"
path = "tests/bench_contig.rs"
[[test]]
name = "bench_strided"
path = "tests/bench_strided.rs"
[[test]]
name = "test_c64"
path = "tests/test_c64.rs"
[[test]]
name = "test_f64"
path = "tests/test_f64.rs"
[dependencies.derive_builder]
version = "0.20"
[dependencies.duplicate]
version = "2.0"
[dependencies.ndarray]
version = ">=0.15, <0.17"
optional = true
[dependencies.num]
version = "0.4"
[dependencies.opt-einsum-path]
version = "0.2"
[dependencies.tblis-ffi]
version = "0.2.4"
[dev-dependencies.rayon]
version = "1.11"
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.tblis-src]
version = "0.2.4"