aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSargun Dhillon <[email protected]>2024-10-08 13:26:59 +0000
committerKevin Guthrie <[email protected]>2024-10-28 11:51:38 -0400
commitdd99314c8824e2ea496cf26f71ff292a9e4f1a38 (patch)
tree7e375a5a6fabb020dc30484a3eb500866117afd7
parent1db55fc5f6d5fa3e61a5ceb8263e4aee66649fa9 (diff)
downloadpingora-dd99314c8824e2ea496cf26f71ff292a9e4f1a38.tar.gz
pingora-dd99314c8824e2ea496cf26f71ff292a9e4f1a38.zip
pingora-core: Update socket dependency
We have the socket version at 0, which matches 0.3 as well. That wont work because it doesn't have feature "all". We need 0.4+. >=0.4, <1, should match ^0, but exclude 0.3. Includes-commit: 98debd9f2793a77047caebf2e70684eb7ef4df14 Replicated-from: https://github.com/cloudflare/pingora/pull/413
-rw-r--r--.bleep2
-rw-r--r--pingora-core/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.bleep b/.bleep
index 6c2c495..29706e1 100644
--- a/.bleep
+++ b/.bleep
@@ -1 +1 @@
-c9b2323f5cb8843bd0c24c82df577cd7a419ff6d \ No newline at end of file
+46b4788e5c9c00dfaa327800b22cb84c8f695b5c \ No newline at end of file
diff --git a/pingora-core/Cargo.toml b/pingora-core/Cargo.toml
index 713bb75..cb9f741 100644
--- a/pingora-core/Cargo.toml
+++ b/pingora-core/Cargo.toml
@@ -56,7 +56,7 @@ sentry = { version = "0.26", features = [
regex = "1"
percent-encoding = "2.1"
parking_lot = { version = "0.12", features = ["arc_lock"] }
-socket2 = { version = "0", features = ["all"] }
+socket2 = { version = ">=0.4, <1.0.0", features = ["all"] }
flate2 = { version = "1", features = ["zlib-ng"], default-features = false }
sfv = "0"
rand = "0.8"