-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 783 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 783 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
[package]
name = "svg2gcode"
version = "0.4.0"
description = "Convert paths in SVG files to GCode for a pen plotter, laser engraver, or other machine."
authors.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
[features]
default = ["image"]
serde = ["dep:serde", "g-code/serde", "svg2star/serde"]
image = ["svg2star/image"]
[dependencies]
svg2star = { path = "../star", version = "0.4.0" }
g-code.workspace = true
rust_decimal = { version = "1", default-features = false }
lyon_geom.workspace = true
roxmltree.workspace = true
paste.workspace = true
[dependencies.serde]
workspace = true
optional = true
features = ["derive", "std"]
[dev-dependencies]
serde_json.workspace = true
pretty_assertions = "1.4.1"
svgtypes.workspace = true