From aadc28ee665fd889416b6a8e4d6a4902d9b3e4cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Sep 2023 20:30:56 +0000 Subject: [PATCH] build(deps): bump serde from 1.0.160 to 1.0.164 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.160 to 1.0.164. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.160...v1.0.164) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- bitswap-discovery-probe/Cargo.toml | 2 +- bitswap-monitoring-client/Cargo.toml | 2 +- common/Cargo.toml | 2 +- ipfs-gateway-finder/Cargo.toml | 2 +- ipfs-json-to-csv/Cargo.toml | 2 +- ipfs-monitoring-plugin-client/Cargo.toml | 2 +- monitoring-size-estimator/Cargo.toml | 2 +- unify-bitswap-traces/Cargo.toml | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8348411..08360d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2629,18 +2629,18 @@ checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" [[package]] name = "serde" -version = "1.0.160" +version = "1.0.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" +checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.160" +version = "1.0.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" +checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" dependencies = [ "proc-macro2", "quote", diff --git a/bitswap-discovery-probe/Cargo.toml b/bitswap-discovery-probe/Cargo.toml index 951388a..4e98d71 100644 --- a/bitswap-discovery-probe/Cargo.toml +++ b/bitswap-discovery-probe/Cargo.toml @@ -17,7 +17,7 @@ prometheus_exporter = "0.8.4" # This needs to be matching the version prometheus_exporter uses! prometheus = { version = "0.13", features = ["process"] } lazy_static = "1.4.0" -serde = "1.0.160" +serde = "1.0.164" serde_yaml = "0.9.25" clap = "2.33.3" cid = "0.10.1" diff --git a/bitswap-monitoring-client/Cargo.toml b/bitswap-monitoring-client/Cargo.toml index d2e0bb0..3e79f71 100644 --- a/bitswap-monitoring-client/Cargo.toml +++ b/bitswap-monitoring-client/Cargo.toml @@ -17,7 +17,7 @@ prometheus_exporter = "0.8.4" # This needs to be matching the version prometheus_exporter uses! prometheus = { version = "0.13", features = ["process"] } lazy_static = "1.4.0" -serde = "1.0.160" +serde = "1.0.164" serde_yaml = "0.9.25" clap = "2.33.3" diff --git a/common/Cargo.toml b/common/Cargo.toml index 414111c..232180f 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" log = "^0.4" flexi_logger = "0.25" failure = "^0.1" -serde = "1.0.160" +serde = "1.0.164" serde_json = "1.0.95" chrono = { version="0.4.24", features = ["serde"] } parity-multiaddr = "0.11.2" diff --git a/ipfs-gateway-finder/Cargo.toml b/ipfs-gateway-finder/Cargo.toml index ac1b38e..fcfb627 100644 --- a/ipfs-gateway-finder/Cargo.toml +++ b/ipfs-gateway-finder/Cargo.toml @@ -16,7 +16,7 @@ futures-util = "0.3.28" reqwest = { version = "0.11", features = ["json","rustls-tls-native-roots"],default-features = false } multibase = "0.9.1" chrono = "0.4.24" -serde = "1.0.160" +serde = "1.0.164" serde_json = "1.0.95" tokio = { version = "^1", features = ["rt-multi-thread","macros","sync"] } rand = "0.8.5" diff --git a/ipfs-json-to-csv/Cargo.toml b/ipfs-json-to-csv/Cargo.toml index 9aae970..bc9a4f5 100644 --- a/ipfs-json-to-csv/Cargo.toml +++ b/ipfs-json-to-csv/Cargo.toml @@ -13,7 +13,7 @@ log = "0.4.20" clap = "2.33.1" csv = "1.2" flate2 = "1.0.27" -serde = "1.0.160" +serde = "1.0.164" serde_json = "1.0.95" chrono = "0.4.24" serde_yaml = "0.9.25" \ No newline at end of file diff --git a/ipfs-monitoring-plugin-client/Cargo.toml b/ipfs-monitoring-plugin-client/Cargo.toml index 07be914..5d60214 100644 --- a/ipfs-monitoring-plugin-client/Cargo.toml +++ b/ipfs-monitoring-plugin-client/Cargo.toml @@ -14,7 +14,7 @@ log = "^0.4" futures = "^0.3" futures-util = "^0.3" chrono = { version = "^0.4", features = ["serde"] } -serde = "1.0.160" +serde = "1.0.164" serde_json = "1.0.95" failure = "^0.1" flate2 = "^1" diff --git a/monitoring-size-estimator/Cargo.toml b/monitoring-size-estimator/Cargo.toml index fd546bb..ed4c5be 100644 --- a/monitoring-size-estimator/Cargo.toml +++ b/monitoring-size-estimator/Cargo.toml @@ -17,7 +17,7 @@ prometheus_exporter = "0.8.4" # This needs to be matching the version prometheus_exporter uses! prometheus = { version = "0.13", features = ["process"] } lazy_static = "1.4.0" -serde = "1.0.160" +serde = "1.0.164" serde_yaml = "0.9.25" clap = "2.33.3" diff --git a/unify-bitswap-traces/Cargo.toml b/unify-bitswap-traces/Cargo.toml index 68eaca8..23c23d5 100644 --- a/unify-bitswap-traces/Cargo.toml +++ b/unify-bitswap-traces/Cargo.toml @@ -13,7 +13,7 @@ log = "0.4.20" clap = "2.33.1" csv = "1.2" flate2 = "1.0.27" -serde = "1.0.160" +serde = "1.0.164" serde_json = "1.0.95" glob = "0.3.1" chrono = "0.4.24"