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