-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (49 loc) · 1.52 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[features]
sleef = ["rlst/sleef", "green-kernels/sleef", "ndelement/sleef", "ndgrid/sleef"]
strict = []
default = ["sleef"]
[package]
name = "bempp"
version = "0.2.0-dev"
edition = "2021"
authors = [
"Timo Betcke <[email protected]>",
"Srinath Kailasa <[email protected]>",
"Matthew Scroggs <[email protected]>",
]
description = "Boundary element method library."
license = "BSD-3-Clause"
homepage = "https://github.com/bempp/bempp-rs"
repository = "https://github.com/bempp/bempp-rs"
readme = "README.md"
keywords = ["numerics"]
categories = ["mathematics", "science"]
[lib]
name = "bempp"
crate-type = ["lib", "cdylib"]
[dependencies]
bempp-quadrature = { version = "0.1.0" }
itertools = "0.13.*"
mpi = { version = "0.8.*"}
num = "0.4"
ndelement = { git="https://github.com/bempp/ndelement.git", features = ["mpi"]}
ndgrid = { git="https://github.com/bempp/ndgrid.git", features = ["serde"] }
# ndgrid = { path = "../ndgrid" }
rayon = "1.9"
rlst = { git = "https://github.com/linalg-rs/rlst.git", features = ["mpi"] }
green-kernels = { git = "https://github.com/bempp/green-kernels.git", features = ["mpi"] }
# c-api-tools = { version = "0.1.0" }
[dev-dependencies]
approx = "0.5"
cauchy = "0.4.*"
criterion = { version = "0.5.*", features = ["html_reports"] }
# kifmm = { version = "1.0" }
[build-dependencies]
cbindgen = "0.27.0"
[[bench]]
name = "assembly_benchmark"
harness = false
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[lints.clippy]
wildcard_imports = "forbid"