Skip to content

Commit

Permalink
pingora-core: Update socket dependency
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sargun committed Oct 8, 2024
1 parent ab1b717 commit 98debd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pingora-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,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"
Expand Down

0 comments on commit 98debd9

Please sign in to comment.