-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 1.16 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
[features]
# Treat warnings as a build error.
strict = []
[package]
name = "bempp-rsrs"
version = "0.0.1-dev"
edition = "2021"
authors = [
"Ignacia Fierro-Piccardo <[email protected]>, Timo Betcke <[email protected]>",
]
description = "An implementation of the randomised strong recursive skeletonisation"
license = "BSD-3-Clause"
homepage = "https://github.com/bempp/rsrs"
repository = "https://github.com/bempp/rsrs"
readme = "README.md"
keywords = ["numerics"]
categories = ["mathematics", "science"]
[lib]
name = "bempp_rsrs"
crate-type = ["cdylib", "lib"]
[dependencies]
itertools = "0.13.*"
rand = { version = "0.8.5", features = ["alloc"] }
rand_chacha = "0.3.*"
num = "0.4.*"
rlst = {git = "https://github.com/ignacia-fp/rlst.git", branch = "id_and_null_space"}
bempp-octree = { git = "https://github.com/bempp/octree.git" }
mpi = { version = "0.8.*", features = ["derive", "user-operations"] }
ndarray = "0.16.1"
ndarray-linalg = "0.16.0"
[profile.release]
debug = 1
[dev-dependencies]
rand_distr = "0.4.3"
#criterion = { version = "0.5.*", features = ["html_reports"]}
[build-dependencies]
cbindgen = "0.27.0"
[lints.clippy]
wildcard_imports = "forbid"