From 90773f764a1710ec03340b6ed09093c1fe823b8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 07:09:17 +0000 Subject: [PATCH] chore(deps): bump socket2 from 0.4.7 to 0.5.1 Bumps [socket2](https://github.com/rust-lang/socket2) from 0.4.7 to 0.5.1. - [Release notes](https://github.com/rust-lang/socket2/releases) - [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/socket2/commits/v0.5.1) --- updated-dependencies: - dependency-name: socket2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++++----- lib/framework/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9092bd6d1..4e2040b7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1300,7 +1300,7 @@ dependencies = [ "serde_yaml 0.9.17", "smallvec", "snap", - "socket2", + "socket2 0.5.1", "syslog_loose", "tempfile", "testify", @@ -1711,7 +1711,7 @@ dependencies = [ "httpdate", "itoa 1.0.1", "pin-project-lite", - "socket2", + "socket2 0.4.9", "tokio", "tower-service", "tracing", @@ -3779,14 +3779,24 @@ checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831" [[package]] name = "socket2" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", "winapi", ] +[[package]] +name = "socket2" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc8d618c6641ae355025c449427f9e96b98abf99a772be3cef6708d15c77147a" +dependencies = [ + "libc", + "windows-sys 0.45.0", +] + [[package]] name = "spin" version = "0.5.2" @@ -4221,7 +4231,7 @@ dependencies = [ "num_cpus", "pin-project-lite", "signal-hook-registry", - "socket2", + "socket2 0.4.9", "tokio-macros", "tracing", "windows-sys 0.45.0", diff --git a/lib/framework/Cargo.toml b/lib/framework/Cargo.toml index c5ea098c2..2a0a453e5 100644 --- a/lib/framework/Cargo.toml +++ b/lib/framework/Cargo.toml @@ -73,7 +73,7 @@ serde_regex = { path = "../serde_regex" } serde_yaml = { version = "0.9.17" } measurable = { path = "../measurable" } snap = { version = "1.1.0", default-features = false } -socket2 = { version = "0.4.7", default-features = false } +socket2 = { version = "0.5.1", default-features = false } syslog_loose = { version = "0.18.0", default-features = false } thiserror = { version = "1.0.39" } tokio = { version = "1.26.0", features = ["time", "net", "signal", "fs", "rt-multi-thread"] }