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