# 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.63" name = "integrate" version = "0.1.4" authors = ["Mahdi Tantaoui "] build = 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" [[example]] name = "laguerre_zeros" path = "examples/laguerre_zeros.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" [dependencies.rayon] version = "1.10.0" [dev-dependencies.time-graph] version = "0.3.1" features = [ "json", "table", ]