diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index fe7634bde..42d85166d 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -1891,7 +1891,7 @@ dependencies = [ "kittycad-execution-plan-macros 0.1.4 (git+https://github.com/KittyCAD/modeling-api?branch=main)", "kittycad-execution-plan-traits", "lazy_static", - "parse-display", + "parse-display 0.9.0", "pretty_assertions", "reqwest", "schemars", @@ -1939,7 +1939,7 @@ dependencies = [ "http 0.2.9", "itertools 0.10.5", "log", - "parse-display", + "parse-display 0.8.2", "phonenumber", "rand 0.8.5", "reqwest", @@ -1969,7 +1969,7 @@ dependencies = [ "kittycad-execution-plan-traits", "kittycad-modeling-cmds", "kittycad-modeling-session", - "parse-display-derive", + "parse-display-derive 0.8.2", "serde", "tabled", "thiserror", @@ -2026,8 +2026,8 @@ dependencies = [ "kittycad-execution-plan-traits", "kittycad-unit-conversion-derive", "measurements", - "parse-display", - "parse-display-derive", + "parse-display 0.8.2", + "parse-display-derive 0.8.2", "schemars", "serde", "serde_bytes", @@ -2612,10 +2612,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6509d08722b53e8dafe97f2027b22ccbe3a5db83cb352931e9716b0aa44bc5c" dependencies = [ "once_cell", - "parse-display-derive", + "parse-display-derive 0.8.2", "regex", ] +[[package]] +name = "parse-display" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06af5f9333eb47bd9ba8462d612e37a8328a5cb80b13f0af4de4c3b89f52dee5" +dependencies = [ + "parse-display-derive 0.9.0", + "regex", + "regex-syntax 0.8.2", +] + [[package]] name = "parse-display-derive" version = "0.8.2" @@ -2627,7 +2638,21 @@ dependencies = [ "quote", "regex", "regex-syntax 0.7.5", - "structmeta", + "structmeta 0.2.0", + "syn 2.0.48", +] + +[[package]] +name = "parse-display-derive" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc9252f259500ee570c75adcc4e317fa6f57a1e47747d622e0bf838002a7b790" +dependencies = [ + "proc-macro2", + "quote", + "regex", + "regex-syntax 0.8.2", + "structmeta 0.3.0", "syn 2.0.48", ] @@ -3855,7 +3880,19 @@ checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d" dependencies = [ "proc-macro2", "quote", - "structmeta-derive", + "structmeta-derive 0.2.0", + "syn 2.0.48", +] + +[[package]] +name = "structmeta" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e1575d8d40908d70f6fd05537266b90ae71b15dbbe7a8b7dffa2b759306d329" +dependencies = [ + "proc-macro2", + "quote", + "structmeta-derive 0.3.0", "syn 2.0.48", ] @@ -3870,6 +3907,17 @@ dependencies = [ "syn 2.0.48", ] +[[package]] +name = "structmeta-derive" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + [[package]] name = "strum" version = "0.24.1" diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 7cff8358c..75df3f7c9 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -24,7 +24,7 @@ kittycad = { workspace = true } kittycad-execution-plan-macros = { workspace = true } kittycad-execution-plan-traits = { workspace = true } lazy_static = "1.4.0" -parse-display = "0.8.2" +parse-display = "0.9.0" schemars = { version = "0.8.16", features = ["impl_json_schema", "url", "uuid1"] } serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108"