From eb54a10a5f8a707c4ac7dcd5c4b7493cb53953d7 Mon Sep 17 00:00:00 2001 From: rami3l Date: Sun, 26 Nov 2023 23:27:39 +0800 Subject: [PATCH] chore(deps): update `Cargo.toml` --- .vscode/settings.json | 2 ++ Cargo.lock | 32 ++++++++++++++++---------------- Cargo.toml | 8 ++++---- crates/pacaptr-macros/Cargo.toml | 4 ++-- 4 files changed, 24 insertions(+), 22 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e38cb83e47..4382916b6e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,6 +7,7 @@ "bools", "chmod", "choco", + "chocolateys", "clippy", "concatcp", "conda", @@ -21,6 +22,7 @@ "equery", "Exherbo", "formatcp", + "goarch", "gsudo", "impls", "indoc", diff --git a/Cargo.lock b/Cargo.lock index 0603d3e72e..3d0c119bfb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,9 +178,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.4.7" +version = "4.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" +checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" dependencies = [ "clap_builder", "clap_derive", @@ -188,9 +188,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.7" +version = "4.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" +checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" dependencies = [ "anstream", "anstyle", @@ -517,9 +517,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" dependencies = [ "either", ] @@ -818,9 +818,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.69" +version = "1.0.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" +checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" dependencies = [ "unicode-ident", ] @@ -917,18 +917,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.192" +version = "1.0.193" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" +checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.192" +version = "1.0.193" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" +checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" dependencies = [ "proc-macro2", "quote", @@ -1086,9 +1086,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.33.0" +version = "1.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" +checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" dependencies = [ "backtrace", "bytes", @@ -1103,9 +1103,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 792647b695..c0065e6338 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,7 +81,7 @@ xshell = "0.2.5" [dependencies] async-trait = "0.1.74" bytes = "1.5.0" -clap = { version = "4.4.7", features = ["cargo", "derive"] } +clap = { version = "4.4.8", features = ["cargo", "derive"] } console = "0.15.7" ctrlc = { version = "3.4.1", features = ["termination"] } dialoguer = { version = "0.11.0", features = ["fuzzy-select"] } @@ -89,7 +89,7 @@ dirs-next = "2.0.0" figment = { version = "0.10.12", features = ["env", "toml"] } futures = { version = "0.3.29", default-features = false, features = ["std"] } indoc = "2.0.4" -itertools = "0.11.0" +itertools = "0.12.0" macro_rules_attribute = "0.2.0" once_cell = "1.18.0" pacaptr-macros = { path = "crates/pacaptr-macros", version = "0.20.0" } @@ -100,10 +100,10 @@ regex = { version = "1.10.2", default-features = false, features = [ "unicode-case", "unicode-perl", ] } -serde = { version = "1.0.192", features = ["derive"] } +serde = { version = "1.0.193", features = ["derive"] } tap = "1.0.1" thiserror = "1.0.50" -tokio = { version = "1.33.0", features = [ +tokio = { version = "1.34.0", features = [ "io-std", "io-util", "macros", diff --git a/crates/pacaptr-macros/Cargo.toml b/crates/pacaptr-macros/Cargo.toml index 08dd478105..432f6284c3 100644 --- a/crates/pacaptr-macros/Cargo.toml +++ b/crates/pacaptr-macros/Cargo.toml @@ -13,10 +13,10 @@ proc-macro = true [dependencies] anyhow = "1.0.75" -itertools = "0.11.0" +itertools = "0.12.0" litrs = "0.4.1" once_cell = "1.18.0" -proc-macro2 = "1.0.69" +proc-macro2 = "1.0.70" quote = "1.0.33" regex = "1.10.2" syn = "2.0.39"