Update crates

This commit is contained in:
hurl-bot 2023-10-23 11:18:00 +00:00 committed by jcamiel
parent fb23d49f39
commit 717857950d
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC
3 changed files with 27 additions and 6 deletions

29
Cargo.lock generated
View File

@ -10,13 +10,14 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
[[package]]
name = "ahash"
version = "0.8.3"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
checksum = "72832d73be48bac96a5d7944568f305d829ed55b0ce3b483647089dfaf6cf704"
dependencies = [
"cfg-if",
"once_cell",
"version_check",
"zerocopy",
]
[[package]]
@ -114,9 +115,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "base64"
version = "0.21.4"
version = "0.21.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2"
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
[[package]]
name = "bit-set"
@ -1369,3 +1370,23 @@ dependencies = [
"indexmap",
"xml-rs",
]
[[package]]
name = "zerocopy"
version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c19fae0c8a9efc6a8281f2e623db8af1db9e57852e04cde3e754dd2dc29340f"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc56589e9ddd1f1c28d4b4b5c773ce232910a6bb67a70133d61c9e347585efe9"
dependencies = [
"proc-macro2",
"quote",
"syn",
]

View File

@ -17,7 +17,7 @@ name = "hurl"
vendored-openssl = ["curl/static-ssl", "curl-sys/static-ssl"]
[dependencies]
base64 = "0.21.4"
base64 = "0.21.5"
brotli = "3.4.0"
chrono = { version = "0.4.31", default-features = false, features = ["clock"] }
clap = { version = "4.4.6", features = ["cargo", "string", "wrap_help"] }

View File

@ -11,7 +11,7 @@ repository = "https://github.com/Orange-OpenSource/hurl"
rust-version = "1.73.0"
[dependencies]
base64 = "0.21.4"
base64 = "0.21.5"
clap = { version = "4.4.6", features = ["cargo", "wrap_help"] }
colored = "2.0.4"
hurl_core = { version = "4.2.0-SNAPSHOT", path = "../hurl_core" }