deps: bump regex, toml_edit, ctrlc (#1168)

This commit is contained in:
Clement Tsang 2023-05-24 00:54:39 -04:00 committed by GitHub
parent 2ef7aa97c9
commit ea3f5e628d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

16
Cargo.lock generated
View File

@ -371,9 +371,9 @@ dependencies = [
[[package]] [[package]]
name = "ctrlc" name = "ctrlc"
version = "3.3.0" version = "3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04d778600249295e82b6ab12e291ed9029407efee0cfb7baf67157edc65964df" checksum = "7394a21d012ce5c850497fb774b167d81b99f060025fbf06ee92b9848bd97eb2"
dependencies = [ dependencies = [
"nix", "nix",
"windows-sys 0.48.0", "windows-sys 0.48.0",
@ -964,9 +964,9 @@ dependencies = [
[[package]] [[package]]
name = "regex" name = "regex"
version = "1.8.1" version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick",
"memchr", "memchr",
@ -981,9 +981,9 @@ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
[[package]] [[package]]
name = "regex-syntax" name = "regex-syntax"
version = "0.7.1" version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
[[package]] [[package]]
name = "roff" name = "roff"
@ -1268,9 +1268,9 @@ dependencies = [
[[package]] [[package]]
name = "toml_edit" name = "toml_edit"
version = "0.19.9" version = "0.19.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92d964908cec0d030b812013af25a0e57fddfadb1e066ecc6681d86253129d4f" checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739"
dependencies = [ dependencies = [
"indexmap", "indexmap",
"serde", "serde",

View File

@ -81,7 +81,7 @@ cfg-if = "1.0.0"
clap = { version = "4.3.0", features = ["default", "cargo", "wrap_help"] } clap = { version = "4.3.0", features = ["default", "cargo", "wrap_help"] }
concat-string = "1.0.1" concat-string = "1.0.1"
crossterm = "0.26.1" crossterm = "0.26.1"
ctrlc = { version = "3.3.0", features = ["termination"] } ctrlc = { version = "3.3.1", features = ["termination"] }
# dhat = "0.3.2" # dhat = "0.3.2"
dirs = "5.0.1" dirs = "5.0.1"
fern = { version = "0.6.2", optional = true } fern = { version = "0.6.2", optional = true }
@ -94,13 +94,13 @@ kstring = { version = "2.0.0", features = ["arc"] }
log = { version = "0.4.17", optional = true } log = { version = "0.4.17", optional = true }
nvml-wrapper = { version = "0.9.0", optional = true } nvml-wrapper = { version = "0.9.0", optional = true }
once_cell = "1.17.1" once_cell = "1.17.1"
regex = "1.8.1" regex = "1.8.2"
serde = { version = "1.0.163", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
starship-battery = { version = "0.8.0", optional = true } starship-battery = { version = "0.8.0", optional = true }
sysinfo = "=0.29.0" sysinfo = "=0.29.0"
thiserror = "1.0.40" thiserror = "1.0.40"
time = { version = "0.3.21", features = ["formatting", "macros"] } time = { version = "0.3.21", features = ["formatting", "macros"] }
toml_edit = { version = "0.19.9", features = ["serde"] } toml_edit = { version = "0.19.10", features = ["serde"] }
tui = { version = "0.20.1", package = "ratatui" } tui = { version = "0.20.1", package = "ratatui" }
typed-builder = "0.14.0" typed-builder = "0.14.0"
unicode-segmentation = "1.10.1" unicode-segmentation = "1.10.1"