integrate 0.2.0

Small, lightweight Rust library for performing numerical integration.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

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

[[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"

[dependencies.itertools]
version = "0.13.0"

[dependencies.num]
version = "0.4.1"

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