From a22c5122e1d2d58e3f30d059978c3eed14cca082 Mon Sep 17 00:00:00 2001 From: tottoto Date: Tue, 19 Sep 2023 05:38:28 +0900 Subject: [PATCH] chore(dependencies): Allow socket2 0.5 (#3314) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f7696c3e19..60e74cce6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ want = "0.3" # Optional libc = { version = "0.2", optional = true } -socket2 = { version = "0.4.7", optional = true, features = ["all"] } +socket2 = { version = ">=0.4.7, <0.6.0", optional = true, features = ["all"] } [dev-dependencies] futures-util = { version = "0.3", default-features = false, features = ["alloc"] }