diff options
| author | Yusuke Tanaka <yusuktan@maguro.dev> | 2024-08-09 00:47:15 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-08 08:47:15 -0700 |
| commit | e36b1a3aa88b31435b18a33448fc75eeb6dc8017 (patch) | |
| tree | bc29141f8d59c74db46fee49426a9bc1a77c1d10 /Cargo.toml | |
| parent | 18b9b43c3631053e2c8b4c293b9e1f44dee7bfa8 (diff) | |
fix(ext/fetch): include TCP src/dst socket info in error messages (#24939)
This commit makes `fetch` error messages include source and destination TCP
socket info i.e. port number and IP address for better debuggability.
Closes #24922
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index cbf9940ca..076ebdf4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -124,7 +124,7 @@ http_v02 = { package = "http", version = "0.2.9" } httparse = "1.8.0" hyper = { version = "1.4.1", features = ["full"] } hyper-rustls = { version = "0.27.2", default-features = false, features = ["http1", "http2", "tls12", "ring"] } -hyper-util = { version = "=0.1.6", features = ["tokio", "client", "client-legacy", "server", "server-auto"] } +hyper-util = { version = "=0.1.7", features = ["tokio", "client", "client-legacy", "server", "server-auto"] } hyper_v014 = { package = "hyper", version = "0.14.26", features = ["runtime", "http1"] } indexmap = { version = "2", features = ["serde"] } ipnet = "2.3" |
