[package]
edition = "2021"
rust-version = "1.86"
name = "rint"
version = "0.1.0"
authors = ["Zander Macleod <zmacleod@pm.me>"]
build = false
include = [
"/src",
"/tests",
"katex-header.html",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust library for the numerical integration of real or complex valued functions of real variables in multiple dimensions."
readme = "README.md"
keywords = [
"integration",
"numerical",
"adaptive",
"math",
"quadrature",
]
categories = [
"mathematics",
"science",
"algorithms",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/zjmacleod/rint"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"katex-header.html",
]
[lib]
name = "rint"
path = "src/lib.rs"
[[test]]
name = "adaptive_integration_tests"
path = "tests/adaptive_integration_tests.rs"
[[test]]
name = "basic_integration_tests"
path = "tests/basic_integration_tests.rs"
[[test]]
name = "basic_integration_tests_complex"
path = "tests/basic_integration_tests_complex.rs"
[[test]]
name = "catalan_adaptive"
path = "tests/catalan_adaptive.rs"
[[test]]
name = "catalan_basic"
path = "tests/catalan_basic.rs"
[[test]]
name = "catalan_singularity"
path = "tests/catalan_singularity.rs"
[[test]]
name = "multi_dimensional_van_booren_tests"
path = "tests/multi_dimensional_van_booren_tests.rs"
[[test]]
name = "singularity_integration_tests"
path = "tests/singularity_integration_tests.rs"
[dependencies.num-complex]
version = "0.4.6"
[dependencies.num-traits]
version = "0.2.19"
[profile.bench]
debug = 2
[profile.release]
debug = 2