Skip to content

Commit 85a92f3

Browse files
authored
Support graceful shutdown on "auto conn" (#66)
* remove references from `ReadVersion` * expose `fn graceful_shutdown(self: Pin<&mut Self>)` on Connection * support graceful shutdown on upgradeable connections * format * update to hyper 1.1.0
1 parent 61724d1 commit 85a92f3

File tree

2 files changed

+281
-49
lines changed

2 files changed

+281
-49
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ features = ["full"]
1717
rustdoc-args = ["--cfg", "docsrs"]
1818

1919
[dependencies]
20-
hyper = "1.0.0"
20+
hyper = "1.1.0"
2121
futures-channel = "0.3"
2222
futures-util = { version = "0.3.16", default-features = false }
2323
http = "1.0"
@@ -31,7 +31,7 @@ tower-service ={ version = "0.3", optional = true }
3131
tower = { version = "0.4.1", optional = true, features = ["make", "util"] }
3232

3333
[dev-dependencies]
34-
hyper = { version = "1.0.0", features = ["full"] }
34+
hyper = { version = "1.1.0", features = ["full"] }
3535
bytes = "1"
3636
http-body-util = "0.1.0"
3737
tokio = { version = "1", features = ["macros", "test-util"] }

0 commit comments

Comments
 (0)