[package]
edition = "2021"
rust-version = "1.82"
name = "integral-core"
version = "0.1.5"
authors = ["integral contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Integral engines (Obara-Saika / Rys) and operator layer for the integral crate."
homepage = "https://github.com/nmrtist/integral"
readme = "README.md"
keywords = [
"quantum-chemistry",
"gaussian",
"integrals",
"molecular",
"eri",
]
categories = [
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/nmrtist/integral"
[lib]
name = "integral_core"
path = "src/lib.rs"
[[test]]
name = "arena"
path = "tests/arena.rs"
[[test]]
name = "eri_cross_algorithm"
path = "tests/eri_cross_algorithm.rs"
[[test]]
name = "rys_interp_vs_reference_eri"
path = "tests/rys_interp_vs_reference_eri.rs"
[dependencies.integral-math]
version = "0.1.5"
[lints.clippy]
doc_markdown = "allow"
[lints.rust]
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1