-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (38 loc) · 977 Bytes
/
Cargo.toml
File metadata and controls
46 lines (38 loc) · 977 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
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "miniacd"
authors = ["Kyle Cesare <kcesare@gmail.com>"]
description = "Approximate convex decomposition of 3D meshes"
version = "0.1.4"
edition = "2024"
license = "MIT OR Apache-2.0"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
extension-module = ["pyo3/extension-module"]
[dependencies]
ahash = "0.8.12"
glamx = { version = "0.1.3", features = ["approx", "rand"] }
indicatif = "0.18.0"
kiddo = "5.2.2"
mimalloc = { version = "0.1.48", features = ["v3"] }
parry3d-f64 = "0.26"
pyo3 = { version = "0.28.0", features = ["abi3-py39", "experimental-inspect"] }
rand = { version = "0.9.0", default-features = false, features = ["std"] }
rand_chacha = "0.9.0"
rayon = "1.11.0"
spade = "2.15.0"
tobj = "4.0.3"
[build-dependencies]
pyo3-build-config = "0.28.0"
[dev-dependencies]
approx = "0.5.1"
divan = "0.1.21"
[[bench]]
name = "ops"
harness = false
[profile.release-lto]
inherits = "release"
codegen-units = 1
debug = false
lto = "fat"
panic = "abort"