-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (40 loc) · 1.12 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
[features]
mpi = ["dep:mpi"]
serde = ["dep:serde"]
strict = []
sleef = ["rlst/sleef"]
default = ["sleef"]
[package]
name = "ndelement"
version = "0.2.1-dev"
edition = "2021"
authors = ["Matthew Scroggs <[email protected]>"]
description = "n-dimensional finite element definition library."
license = "BSD-3-Clause"
homepage = "https://github.com/bempp/ndelement"
repository = "https://github.com/bempp/ndelement"
readme = "README.md"
keywords = ["numerics"]
categories = ["mathematics", "science"]
[lib]
name = "ndelement"
crate-type = ["lib", "cdylib"]
[dependencies]
bempp-quadrature = { version = "0.1.0" }
itertools = "0.13.*"
mpi = { version = "0.8.*", optional = true }
num = "0.4"
rlst = { git = "https://github.com/linalg-rs/rlst.git", default-features = false }
serde = { version = "1", features = ["derive"], optional = true }
strum = "0.26"
strum_macros = "0.26"
c-api-tools = { version = "0.1.0" }
[dev-dependencies]
paste = "1.*"
approx = "0.5"
[build-dependencies]
cbindgen = "0.27.0"
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[lints.clippy]
wildcard_imports = "forbid"