You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
687 B
29 lines
687 B
[package]
|
|
name = "svg2gcode"
|
|
version = "0.1.2"
|
|
authors = ["Sameer Puri <crates@purisa.me>"]
|
|
edition = "2021"
|
|
description = "Convert paths in SVG files to GCode for a pen plotter, laser engraver, or other machine."
|
|
repository = "https://github.com/sameer/svg2gcode"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
g-code = { version = "0.3.5", features = ["serde"] }
|
|
lyon_geom = "1.0.4"
|
|
euclid = "0.22"
|
|
log = "0.4"
|
|
uom = "0.34.0"
|
|
roxmltree = "0.18"
|
|
svgtypes = "0.11"
|
|
paste = "1.0"
|
|
|
|
[dependencies.serde]
|
|
default-features = false
|
|
optional = true
|
|
version = "1"
|
|
features = ["derive"]
|
|
|
|
[dev-dependencies]
|
|
cairo-rs = { version = "0.17", default-features = false, features = ["svg", "v1_16"] }
|
|
serde_json = "1"
|