-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
52 lines (50 loc) · 1.21 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
[package]
name = "csgrs"
version = "0.14.0"
edition = "2021"
description = "Constructive solid geometry on meshes using BSP trees in Rust"
authors = ["Timothy Schmidt <[email protected]>",]
license = "MIT"
repository = "https://github.com/timschmidt/csgrs"
readme = "readme.md"
[dependencies]
cavalier_contours = "0.4.0"
chull = "0.2.4"
dxf = { version = "0.6.0", optional = true }
earclip = "1.1.0"
meshtext = { version = "0.3.1", features = ["owned"], optional = true }
nalgebra = "0.33"
rapier3d-f64 = { version = "0.23.0", optional = true }
rapier3d = { version = "0.23.0", optional = true }
parry3d-f64 = { version = "0.18.0", optional = true }
parry3d = { version = "0.18.0", optional = true }
rayon = { version = "1.7", optional = true }
stl_io = { version = "0.8.3", optional = true }
earcut = "0.4.2"
image = { version = "0.25.5", optional = true }
contour_tracing = { version = "1.0.12", optional = true }
hershey = "0.1.1"
[features]
default = ["f64", "stl-io", "dxf-io", "truetype-text"]
parallel = ["rayon"]
f64 = [
"rapier3d-f64",
"parry3d-f64",
]
f32 = [
"rapier3d",
"parry3d",
]
stl-io = [
"stl_io",
]
dxf-io = [
"dxf",
]
truetype-text = [
"meshtext",
]
image-io = [
"image",
"contour_tracing",
]