Update crates

This commit is contained in:
hurl-bot 2022-11-29 08:24:13 +00:00
parent 04ebc958c6
commit 4582c5a4fc
No known key found for this signature in database
GPG Key ID: 1283A2B4A0DCAF8D
3 changed files with 17 additions and 43 deletions

56
Cargo.lock generated
View File

@ -153,9 +153,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.0.27"
version = "4.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0acbd8d28a0a60d7108d7ae850af6ba34cf2d1257fc646980e5f97ce14275966"
checksum = "f94eecf2f2d0e0220737d9e6d8530da1e903b97dde58ebaf749262e85ce133c9"
dependencies = [
"bitflags",
"clap_lex",
@ -605,15 +605,9 @@ dependencies = [
[[package]]
name = "io-lifetimes"
version = "0.7.5"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074"
[[package]]
name = "io-lifetimes"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e394faa0efb47f9f227f1cd89978f854542b318a6f64fa695489c9c993056656"
checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
dependencies = [
"libc",
"windows-sys 0.42.0",
@ -621,13 +615,13 @@ dependencies = [
[[package]]
name = "is-terminal"
version = "0.4.0"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae5bc6e2eb41c9def29a3e0f1306382807764b9b53112030eff57435667352d"
checksum = "927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330"
dependencies = [
"hermit-abi 0.2.6",
"io-lifetimes 1.0.2",
"rustix 0.36.3",
"io-lifetimes",
"rustix",
"windows-sys 0.42.0",
]
@ -710,12 +704,6 @@ dependencies = [
"cc",
]
[[package]]
name = "linux-raw-sys"
version = "0.0.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d"
[[package]]
name = "linux-raw-sys"
version = "0.1.3"
@ -964,29 +952,15 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
[[package]]
name = "rustix"
version = "0.35.13"
version = "0.36.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9"
checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23"
dependencies = [
"bitflags",
"errno",
"io-lifetimes 0.7.5",
"io-lifetimes",
"libc",
"linux-raw-sys 0.0.46",
"windows-sys 0.42.0",
]
[[package]]
name = "rustix"
version = "0.36.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b1fbb4dfc4eb1d390c02df47760bb19a84bb80b301ecc947ab5406394d8223e"
dependencies = [
"bitflags",
"errno",
"io-lifetimes 1.0.2",
"libc",
"linux-raw-sys 0.1.3",
"linux-raw-sys",
"windows-sys 0.42.0",
]
@ -1114,11 +1088,11 @@ dependencies = [
[[package]]
name = "terminal_size"
version = "0.2.2"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40ca90c434fd12083d1a6bdcbe9f92a14f96c8a1ba600ba451734ac334521f7a"
checksum = "cb20089a8ba2b69debd491f8d2d023761cbf196e999218c591fa1e7e15a21907"
dependencies = [
"rustix 0.35.13",
"rustix",
"windows-sys 0.42.0",
]

View File

@ -21,7 +21,7 @@ atty = "0.2.14"
base64 = "0.13.1"
brotli = "3.3.4"
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
clap = { version = "4.0.27", features = ["cargo", "string", "wrap_help"] }
clap = { version = "4.0.28", features = ["cargo", "string", "wrap_help"] }
colored = "2.0.0"
curl = "0.4.44"
encoding = "0.2.33"

View File

@ -16,7 +16,7 @@ strict = []
[dependencies]
atty = "0.2.14"
base64 = "0.13.1"
clap = { version = "4.0.27", features = ["cargo", "wrap_help"] }
clap = { version = "4.0.28", features = ["cargo", "wrap_help"] }
colored = "2.0.0"
hurl_core = { version = "1.9.0-SNAPSHOT", path = "../hurl_core" }
regex = "1.7.0"