From c4e14d00ce8d6737d87eff0563c6741e26cd01dd Mon Sep 17 00:00:00 2001 From: Sameer Puri Date: Thu, 14 Mar 2024 19:02:49 -0700 Subject: [PATCH] bump cli and web to lib v0.2.0 --- cli/Cargo.toml | 4 ++-- web/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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"