From 88bf64ab16b447f612f069838ccc5fe83b6c6e3e Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Fri, 9 Jun 2023 00:26:01 -0400 Subject: [PATCH] deps: bump hashbrown, once_cell, regex, serde, time, libc, clap (#1194) --- Cargo.lock | 41 ++++++++++++++++++++++++----------------- Cargo.toml | 14 +++++++------- 2 files changed, 31 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e5c9d9ff..79a44258 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,6 +37,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "allocator-api2" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4f263788a35611fba42eb41ff811c5d0360c58b97402570312a350736e2542e" + [[package]] name = "anstream" version = "0.3.2" @@ -153,7 +159,7 @@ dependencies = [ "dirs", "fern", "filedescriptor", - "hashbrown 0.13.2", + "hashbrown 0.14.0", "humantime", "humantime-serde", "indexmap", @@ -225,9 +231,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.3.1" +version = "4.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ed2379f8603fa2b7509891660e802b88c70a79a6427a70abb5968054de2c28" +checksum = "401a4694d2bf92537b6867d94de48c4842089645fdcdf6c71865b175d836e9c2" dependencies = [ "clap_builder", ] @@ -545,11 +551,12 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.13.2" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" dependencies = [ "ahash", + "allocator-api2", ] [[package]] @@ -660,9 +667,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.144" +version = "0.2.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" +checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" [[package]] name = "libloading" @@ -821,9 +828,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.17.2" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "option-ext" @@ -960,9 +967,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.3" +version = "1.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390" +checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f" dependencies = [ "aho-corasick", "memchr", @@ -1030,18 +1037,18 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "serde" -version = "1.0.163" +version = "1.0.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" +checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.163" +version = "1.0.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" +checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" dependencies = [ "proc-macro2", "quote", @@ -1228,9 +1235,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.21" +version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc" +checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd" dependencies = [ "itoa", "serde", diff --git a/Cargo.toml b/Cargo.toml index d624dc3b..47887f43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ ctrlc = { version = "3.4.0", features = ["termination"] } # dhat = "0.3.2" dirs = "5.0.1" fern = { version = "0.6.2", optional = true } -hashbrown = "0.13.2" +hashbrown = "0.14.0" humantime = "2.1.0" humantime-serde = "1.1.1" indexmap = "1.9.3" @@ -93,20 +93,20 @@ itertools = "0.10.5" kstring = { version = "2.0.0", features = ["arc"] } log = { version = "0.4.18", optional = true } nvml-wrapper = { version = "0.9.0", optional = true } -once_cell = "1.17.2" -regex = "1.8.3" -serde = { version = "1.0.163", features = ["derive"] } +once_cell = "1.18.0" +regex = "1.8.4" +serde = { version = "1.0.164", features = ["derive"] } starship-battery = { version = "0.8.0", optional = true } sysinfo = "0.29.2" thiserror = "1.0.40" -time = { version = "0.3.21", features = ["formatting", "macros"] } +time = { version = "0.3.22", features = ["formatting", "macros"] } toml_edit = { version = "0.19.10", features = ["serde"] } tui = { version = "0.21.0", package = "ratatui" } unicode-segmentation = "1.10.1" unicode-width = "0.1.10" [target.'cfg(unix)'.dependencies] -libc = "0.2.144" +libc = "0.2.146" [target.'cfg(target_os = "linux")'.dependencies] rustix = { version = "0.37.19", features = ["fs", "param", "process"] } @@ -139,7 +139,7 @@ cargo-husky = { version = "1.5.0", default-features = false, features = [ predicates = "3.0.3" [build-dependencies] -clap = { version = "4.3.1", features = ["default", "cargo", "wrap_help"] } +clap = { version = "4.3.2", features = ["default", "cargo", "wrap_help"] } clap_complete = "4.3.1" clap_mangen = "0.2.12"