# 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" name = "gauss-quad" version = "0.2.1" authors = [ "DomiDre ", "Johanna Sörngård ", ] description = "Library for applying Gaussian quadrature to integrate a function" readme = "README.md" keywords = [ "gaussian", "quadrature", "numerics", "integration", ] categories = ["mathematics"] license = "MIT OR Apache-2.0" repository = "https://github.com/domidre/gauss-quad" [package.metadata.docs.rs] all-features = true [lib] crate-type = [ "lib", "cdylib", ] [[bench]] name = "legendre" harness = false [[bench]] name = "hermite" harness = false [[bench]] name = "laguerre" harness = false [[bench]] name = "jacobi" harness = false [[bench]] name = "midpoint" harness = false [[bench]] name = "simpson" harness = false [dependencies.nalgebra] version = "0.33" features = ["std"] default-features = false [dependencies.rayon] version = "1.10" optional = true [dependencies.serde] version = "1.0.204" features = [ "alloc", "derive", ] optional = true default-features = false [dev-dependencies.approx] version = "0.5.1" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [features] rayon = ["dep:rayon"] serde = ["dep:serde"]