diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index a350c4bcd..e92c7a7d4 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -1426,9 +1426,9 @@ dependencies = [ [[package]] name = "kittycad" -version = "0.2.32" +version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2b6004ce120245048ab47f2eda8f5f253221b5c37f2aceb62e9412eb150110a" +checksum = "d341a81a4dfef43460d395c87d86c17e24affb96db0e7f4a35e8688f0e092344" dependencies = [ "anyhow", "async-trait", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index 8eaf33954..29d982aad 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib"] bson = { version = "2.7.0", features = ["uuid-1", "chrono"] } gloo-utils = "0.2.0" kcl-lib = { path = "kcl" } -kittycad = { version = "0.2.32", default-features = false, features = ["js"] } +kittycad = { version = "0.2.33", default-features = false, features = ["js"] } serde_json = "1.0.107" uuid = { version = "1.4.1", features = ["v4", "js", "serde"] } wasm-bindgen = "0.2.87" @@ -20,7 +20,7 @@ wasm-bindgen-futures = "0.4.37" [dev-dependencies] anyhow = "1" image = "0.24.7" -kittycad = "0.2.32" +kittycad = "0.2.33" pretty_assertions = "1.4.0" reqwest = { version = "0.11.22", default-features = false } tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros", "time"] } diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 171a06a1c..cf2a075a7 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -15,7 +15,7 @@ clap = { version = "4.4.6", features = ["cargo", "derive", "env", "unicode"], op dashmap = "5.5.3" derive-docs = { version = "0.1.4" } #derive-docs = { path = "../derive-docs" } -kittycad = { version = "0.2.32", default-features = false, features = ["js"] } +kittycad = { version = "0.2.33", default-features = false, features = ["js"] } lazy_static = "1.4.0" parse-display = "0.8.2" schemars = { version = "0.8", features = ["impl_json_schema", "url", "uuid1"] }