-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 824 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 824 Bytes
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
[package]
name = "adaptive-triangulation"
version = "0.1.0"
edition = "2021"
description = "Fast N-dimensional Delaunay triangulation with incremental point insertion (Bowyer-Watson)"
license = "BSD-3-Clause"
repository = "https://github.com/python-adaptive/adaptive-triangulation"
readme = "README.md"
keywords = ["triangulation", "delaunay", "bowyer-watson", "computational-geometry"]
categories = ["science", "mathematics"]
[lib]
name = "adaptive_triangulation"
crate-type = ["cdylib", "rlib"]
[dev-dependencies]
criterion = "0.5"
[dependencies]
pyo3 = { version = "0.23", features = ["extension-module", "abi3-py310"] }
numpy = "0.23"
nalgebra = "0.33"
thiserror = "2"
rustc-hash = "2"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true
[[bench]]
name = "bench_triangulation"
harness = false