diff --git a/Cargo.lock b/Cargo.lock index 522b27e89d..058cdd0b6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -479,16 +479,6 @@ dependencies = [ "itertools 0.10.5", ] -[[package]] -name = "crossbeam-channel" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" -dependencies = [ - "cfg-if", - "crossbeam-utils", -] - [[package]] name = "crossbeam-deque" version = "0.8.3" @@ -935,9 +925,9 @@ dependencies = [ [[package]] name = "insta" -version = "1.31.0" +version = "1.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0770b0a3d4c70567f0d58331f3088b0e4c4f56c9b8d764efe654b4a5d46de3a" +checksum = "a3e02c584f4595792d09509a94cdb92a3cef7592b1eb2d9877ee6f527062d0ea" dependencies = [ "console", "lazy_static", @@ -1674,9 +1664,9 @@ dependencies = [ [[package]] name = "rayon" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" +checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" dependencies = [ "either", "rayon-core", @@ -1684,14 +1674,12 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" +checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" dependencies = [ - "crossbeam-channel", "crossbeam-deque", "crossbeam-utils", - "num_cpus", ] [[package]] @@ -1802,9 +1790,9 @@ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustix" -version = "0.38.13" +version = "0.38.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" +checksum = "747c788e9ce8e92b12cd485c49ddf90723550b654b32508f979b71a7b1ecda4f" dependencies = [ "bitflags 2.4.0", "errno", @@ -1980,9 +1968,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" +checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" [[package]] name = "smawk" diff --git a/Cargo.toml b/Cargo.toml index 6841be4d08..ac8b894f2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ hex = "0.4.3" itertools = "0.11.0" indexmap = "2.0.0" libc = { version = "0.2.148" } -insta = { version = "1.31.0", features = ["filters"] } +insta = { version = "1.32.0", features = ["filters"] } maplit = "1.0.2" num_cpus = "1.16.0" once_cell = "1.18.0" @@ -56,11 +56,11 @@ prost = "0.11.9" prost-build = "0.11.9" rand = "0.8.5" rand_chacha = "0.3.1" -rayon = "1.7.0" +rayon = "1.8.0" regex = "1.9.5" rpassword = "7.2.0" -rustix = { version = "0.38.13", features = ["fs"] } -smallvec = { version = "1.11.0", features = [ +rustix = { version = "0.38.14", features = ["fs"] } +smallvec = { version = "1.11.1", features = [ "const_generics", "const_new", "union",