Bump parse-display from 0.8.2 to 0.9.0 in /src/wasm-lib (#1388)

Bumps [parse-display](https://github.com/frozenlib/parse-display) from 0.8.2 to 0.9.0.
- [Changelog](https://github.com/frozenlib/parse-display/blob/master/CHANGELOG.md)
- [Commits](https://github.com/frozenlib/parse-display/compare/v0.8.2...v0.9.0)

---
updated-dependencies:
- dependency-name: parse-display
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2024-02-11 12:09:50 -08:00
committed by GitHub
parent d6bfc38d62
commit 81e70e139f
2 changed files with 57 additions and 9 deletions

View File

@ -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"

View File

@ -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"