forked from GladiusSlicer/GladiusSlicer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 651 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 651 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 = "gladius_slicer"
version = "0.4.0"
authors = ["mrhatman <lucasince@gmail.com>"]
edition = "2018"
[workspace]
members = [
"gladius_shared"
]
[dependencies]
clap = { version = "2.33", features = ["yaml"] }
simple_logger = "5.0.0"
log = "0.4.14"
nalgebra = "0.33"
itertools = "0.13"
geo = { version = "0.28.0", features = ["use-serde"] }
geo-clipper = "0.8.0"
geo-svg = "0.6.3"
geo-offset = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
deser-hjson = "2.2"
serde_json = "1.0.74"
bincode = "1.3.3"
ordered-float = "4.3"
rayon = "1.5.1"
rand = "0.8.4"
gladius_shared = { path = "gladius_shared", version = "0.4.0" }