diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 475fe5b..a741826 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svg2gcode-cli" -version = "0.0.7" +version = "0.0.8" authors = ["Sameer Puri "] edition = "2021" description = "Command line interface for svg2gcode" @@ -8,7 +8,7 @@ repository = "https://github.com/sameer/svg2gcode" license = "MIT" [dependencies] -svg2gcode = { version = "0.1.6", features = ["serde"]} +svg2gcode = { version = "0.2.0", features = ["serde"]} env_logger = { version = "0", default-features = false, features = ["atty", "termcolor", "humantime"] } log = "0" g-code = "0.3" diff --git a/web/Cargo.toml b/web/Cargo.toml index 2ad312b..afd9ea3 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svg2gcode-web" -version = "0.0.7" +version = "0.0.8" authors = ["Sameer Puri "] edition = "2021" description = "Convert vector graphics to g-code for pen plotters, laser engravers, and other CNC machines" @@ -10,7 +10,7 @@ license = "MIT" [dependencies] wasm-bindgen = "0.2" -svg2gcode = { version = "0.1.6", features = ["serde"] } +svg2gcode = { version = "0.2.0", features = ["serde"] } roxmltree = "0.19" g-code = "0.3" codespan-reporting = "0.11"