diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index 49c96eae..f3993606 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -37,4 +37,3 @@ tokio-uring = { version = "0.4", optional = true } [dev-dependencies] tokio = { version = "1.23.1", features = ["full"] } -hyper = { version = "0.14.10", default-features = false, features = ["server", "tcp", "http1"] } diff --git a/actix-rt/examples/hyper.rs b/actix-rt/examples/hyper.rs deleted file mode 100644 index 41c5a7d8..00000000 --- a/actix-rt/examples/hyper.rs +++ /dev/null @@ -1,29 +0,0 @@ -use std::{convert::Infallible, net::SocketAddr}; - -use hyper::{ - service::{make_service_fn, service_fn}, - Body, Request, Response, Server, -}; - -async fn handle(_req: Request
) -> Result