[package] name = "rusty-green-kernel" version = "0.2.0" authors = ["Timo Betcke "] edition = "2018" description = "A library for the evaluation of potential sums for the Laplace, Helmholtz and modified Helmholtz kernel." license = "BSD-3-Clause" homepage = "https://github.com/rusty-fast-solvers/rusty-green-kernel" repository = "https://github.com/rusty-fast-solvers/rusty-green-kernel" readme = "README.md" keywords = ["numerics"] categories = ["mathematics", "science"] [lib] name = "rusty_green_kernel" crate-type = ["lib", "cdylib"] [dependencies] ndarray = { version = "0.15", features = ["rayon"] } rayon = "^1.0.3" ndarray-linalg = {version = "0.14"} approx = "0.5" num = "0.4" rand = "0.8" [dev-dependencies] criterion = { version = "0.3", features = ["html_reports"] } num_cpus = "1.*" [package.metadata.docs.rs] rustdoc-args = [ "--html-in-header", "katex-header.html" ] [[bench]] name = "direct_evaluator_benchmarks" harness = false