integrate 0.1.10

Small, lightweight Rust library for performing numerical integration.
Documentation
[dependencies.itertools]
version = "0.13.0"

[dependencies.num]
version = "0.4.1"

[dependencies.num-traits]
version = "0.2.18"

[dependencies.rayon]
version = "1.10.0"

[dev-dependencies.time-graph]
features = ["json", "table"]
version = "0.3.1"

[[example]]
name = "laguerre_zeros"
path = "examples/laguerre_zeros.rs"

[lib]
name = "integrate"
path = "src/lib.rs"

[package]
authors = ["Mahdi Tantaoui <mohamedalmahdi.tantaoui@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = " Small, lightweight Rust library for performing numerical integration."
documentation = "https://docs.rs/integrate/"
edition = "2021"
keywords = ["math", "integral", "Gauss", "performance", "Numerical"]
license = "MIT"
name = "integrate"
readme = "README.md"
repository = "https://github.com/mtantaoui/Integrate"
rust-version = "1.63"
version = "0.1.10"

[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "./docs/docs-header.html"]

[[test]]
name = "mod"
path = "tests/mod.rs"

[[test]]
name = "problems"
path = "tests/problems.rs"

[[test]]
name = "test_adaptive_quadrature"
path = "tests/test_adaptive_quadrature.rs"

[[test]]
name = "test_legendre"
path = "tests/test_legendre.rs"

[[test]]
name = "test_newton_cotes"
path = "tests/test_newton_cotes.rs"

[[test]]
name = "test_romberg"
path = "tests/test_romberg.rs"