-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
62 lines (55 loc) · 1.45 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
58
59
60
61
62
[workspace]
members = [
".",
"ffi",
"tools",
"tools/mesh-io",
"tools/mesh-io/ffi",
"tools/num-part",
]
[package]
name = "coupe"
version = "0.1.0"
authors = [
"Armand Touminet <armand.touminet@protonmail.com>",
"Hubert Hirtz <hubert@hirtz.pm>",
"Cédric Chevalier",
"Sébastien Morais"
]
edition = "2021"
license = "MIT OR Apache-2.0"
description = """
Coupe is a mesh partitioning library. It implements composable
geometric and topologic algorithms.
"""
keywords = ["mesh", "partitioning"]
categories = ["algorithms", "mathematics"]
readme = "README.md"
repository = "https://github.com/LIHPC-Computational-Geometry/coupe"
autobenches = false
[features]
default = ["sprs"]
# Enable the nightly `stdsimd` feature and AVX512-accelerated algorithms.
# Requires rust nightly.
avx512 = []
[dependencies]
approx = "0.5"
itertools = "0.12"
nalgebra = { version = "0.32", default-features = false, features = ["rand", "std"] }
num-traits = "0.2"
rayon = "1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
rand = "0.8"
sprs = { version = "0.11", optional = true, default-features = false, features = ["multi_thread"] }
ittapi = "0.4"
[dev-dependencies]
criterion = "0.5"
proptest = { version = "1", default-features = false, features = ["std", "timeout"] }
tracing-subscriber = "0.3"
tracing-chrome = "0.7"
tracing-tree = "0.3"
num_cpus = "1"
core_affinity = "0.8"
[[bench]]
name = "rcb_cartesian"
harness = false