From 822e7094e5f9ea0e69c6f0396c35f5a6204e622d Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Tue, 22 Nov 2022 18:39:58 +1100 Subject: [PATCH] Upgrade dependencies (#554) - bytes v1.2.1 => v1.3.0 - serde_json v1.0.88 => v1.0.89 - compact_str v0.6.0 => v0.6.1 Signed-off-by: Jiahao XU --- Cargo.lock | 8 ++++---- crates/binstalk-downloader/Cargo.toml | 2 +- crates/binstalk-manifests/Cargo.toml | 4 ++-- crates/binstalk-types/Cargo.toml | 2 +- crates/binstalk/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65b058a7..9205f577 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -267,9 +267,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "bytes" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" +checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" [[package]] name = "bzip2" @@ -1886,9 +1886,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.88" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7" +checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db" dependencies = [ "itoa", "ryu", diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index c15f887a..a6d0f28f 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -11,7 +11,7 @@ license = "GPL-3.0" [dependencies] binstalk-types = { version = "0.1.0", path = "../binstalk-types" } -bytes = "1.2.1" +bytes = "1.3.0" bzip2 = "0.4.3" digest = "0.10.6" flate2 = { version = "1.0.24", default-features = false } diff --git a/crates/binstalk-manifests/Cargo.toml b/crates/binstalk-manifests/Cargo.toml index 0b045687..17e8c040 100644 --- a/crates/binstalk-manifests/Cargo.toml +++ b/crates/binstalk-manifests/Cargo.toml @@ -11,14 +11,14 @@ license = "Apache-2.0 OR MIT" [dependencies] binstalk-types = { version = "0.1.0", path = "../binstalk-types" } -compact_str = { version = "0.6.0", features = ["serde"] } +compact_str = { version = "0.6.1", features = ["serde"] } fs-lock = { version = "0.1.0", path = "../fs-lock" } home = "0.5.4" miette = "5.4.1" semver = { version = "1.0.14", features = ["serde"] } serde = { version = "1.0.147", features = ["derive"] } serde-tuple-vec-map = "1.0.1" -serde_json = "1.0.88" +serde_json = "1.0.89" thiserror = "1.0.37" toml_edit = { version = "0.15.0", features = ["easy"] } url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/binstalk-types/Cargo.toml b/crates/binstalk-types/Cargo.toml index c109ed7c..382af3ff 100644 --- a/crates/binstalk-types/Cargo.toml +++ b/crates/binstalk-types/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" license = "Apache-2.0 OR MIT" [dependencies] -compact_str = { version = "0.6.0", features = ["serde"] } +compact_str = { version = "0.6.1", features = ["serde"] } once_cell = "1.16.0" semver = { version = "1.0.14", features = ["serde"] } serde = { version = "1.0.147", features = ["derive"] } diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 8abc3811..0f257a58 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -14,7 +14,7 @@ async-trait = "0.1.58" binstalk-downloader = { version = "0.1.0", path = "../binstalk-downloader" } binstalk-types = { version = "0.1.0", path = "../binstalk-types" } cargo_toml = "0.13.0" -compact_str = { version = "0.6.0", features = ["serde"] } +compact_str = { version = "0.6.1", features = ["serde"] } crates_io_api = { version = "0.8.1", default-features = false } detect-targets = { version = "0.1.2", path = "../detect-targets" } either = "1.8.0"