bilby 0.2.0

A high-performance numerical quadrature (integration) library for Rust
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.93"
name = "bilby"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance numerical quadrature (integration) library for Rust"
documentation = "https://docs.rs/bilby"
readme = "README.md"
keywords = [
    "quadrature",
    "integration",
    "numerical",
    "gauss-legendre",
    "scientific",
]
categories = [
    "mathematics",
    "science",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Entrolution/bilby"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
parallel = [
    "dep:rayon",
    "std",
]
std = []

[lib]
name = "bilby"
path = "src/lib.rs"
bench = false

[[bench]]
name = "cubature"
path = "benches/cubature.rs"
harness = false

[[bench]]
name = "integration_1d"
path = "benches/integration_1d.rs"
harness = false

[[bench]]
name = "node_generation"
path = "benches/node_generation.rs"
harness = false

[dependencies.num-traits]
version = "0.2"
features = ["libm"]
default-features = false

[dependencies.rayon]
version = "1"
optional = true

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]