Upgrade rustls to 0.21 across all third party packages

Summary:
rustls 0.21.0 finally has support for IP addresses in certs.

Lots of other crates have (in)direct dependencies on rustls so I have to upgrade those too:

* hyper, reqwest, and auxiliary crates for those have been updated
* tonic has been updated and our local patch removed (since the relevant PR was merged upstream)

Reviewed By: zertosh

Differential Revision: D45989949

fbshipit-source-id: 658c11d29859d6d36368a412dab05e3c99313ee0
This commit is contained in:
Pedro Rittner 2023-05-19 12:39:46 -07:00 committed by Facebook GitHub Bot
parent 7dbdc85c58
commit e4e9b2e119

View file

@ -28,7 +28,7 @@ safeptrace = { version = "0.1.0", path = "../safeptrace", features = ["memory",
serde = { version = "1.0.136", features = ["derive", "rc"] }
thiserror = "1.0.36"
tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] }
tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
tokio-stream = { version = "0.1.14", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
tracing = "0.1.35"
tracing-subscriber = { version = "0.3.17", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] }
unwind = { version = "0.4", features = ["ptrace"] }