diff options
author | Sargun Dhillon <[email protected]> | 2024-10-08 13:26:59 +0000 |
---|---|---|
committer | Kevin Guthrie <[email protected]> | 2024-10-28 11:51:38 -0400 |
commit | dd99314c8824e2ea496cf26f71ff292a9e4f1a38 (patch) | |
tree | 7e375a5a6fabb020dc30484a3eb500866117afd7 | |
parent | 1db55fc5f6d5fa3e61a5ceb8263e4aee66649fa9 (diff) | |
download | pingora-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-- | .bleep | 2 | ||||
-rw-r--r-- | pingora-core/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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" |