diff --git a/stitch/Cargo.lock b/stitch/Cargo.lock index 2027bdc5..a317325c 100644 --- a/stitch/Cargo.lock +++ b/stitch/Cargo.lock @@ -627,6 +627,15 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + [[package]] name = "log" version = "0.4.28" @@ -745,6 +754,29 @@ version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + [[package]] name = "paste" version = "1.0.15" @@ -971,6 +1003,12 @@ dependencies = [ "untrusted", ] +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + [[package]] name = "semver" version = "1.0.27" @@ -1205,9 +1243,9 @@ dependencies = [ [[package]] name = "topstitch" -version = "0.93.0" +version = "0.95.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "680b2ab30eae9c2f3118bc480dd6b74744b0fa30cdbca649cd6410add0ce4715" +checksum = "08bffb32215ac50fd0969e226f817b9fc6beb29f817acbbfbf799051bf9fd8bc" dependencies = [ "fixedbitset", "geo", @@ -1215,6 +1253,7 @@ dependencies = [ "itertools 0.10.5", "nalgebra", "num-bigint", + "parking_lot", "paste", "regex", "rstar", diff --git a/stitch/Cargo.toml b/stitch/Cargo.toml index 1b7631e4..96f17980 100644 --- a/stitch/Cargo.toml +++ b/stitch/Cargo.toml @@ -10,4 +10,4 @@ clap = { version = "4.5", features = ["derive"] } num-bigint = { version = "0.4", features = ["serde"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -topstitch = "0.93.0" +topstitch = "0.95.0"