chore(deps): upgrade to hyper 1.x #1193
pr.yml
on: pull_request
Annotations
34 errors
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L782
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/http/retry/src/replay.rs:782:50
|
782 | let initial = ReplayBody::try_new(hyper::Body::empty(), 64 * 1024)
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
782 - let initial = ReplayBody::try_new(hyper::Body::empty(), 64 * 1024)
782 + let initial = ReplayBody::try_new(Body::empty(), 64 * 1024)
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L797
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/http/retry/src/replay.rs:797:54
|
797 | let mut initial = ReplayBody::try_new(hyper::Body::from("hello world"), 64 * 1024)
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
797 - let mut initial = ReplayBody::try_new(hyper::Body::from("hello world"), 64 * 1024)
797 + let mut initial = ReplayBody::try_new(Body::from("hello world"), 64 * 1024)
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L841
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/http/retry/src/replay.rs:841:37
|
841 | let (mut tx, body) = hyper::Body::channel();
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
841 - let (mut tx, body) = hyper::Body::channel();
841 + let (mut tx, body) = Body::channel();
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L871
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/http/retry/src/replay.rs:871:37
|
871 | let (mut tx, body) = hyper::Body::channel();
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
871 - let (mut tx, body) = hyper::Body::channel();
871 + let (mut tx, body) = Body::channel();
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L902
error[E0412]: cannot find type `Body` in crate `hyper`
--> linkerd/http/retry/src/replay.rs:902:35
|
902 | |sz: usize| -> hyper::Body { (0..sz).map(|_| "x").collect::<String>().into() };
| ^^^^ not found in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
902 - |sz: usize| -> hyper::Body { (0..sz).map(|_| "x").collect::<String>().into() };
902 + |sz: usize| -> Body { (0..sz).map(|_| "x").collect::<String>().into() };
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L905
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/http/retry/src/replay.rs:905:40
|
905 | ReplayBody::try_new(hyper::Body::empty(), max_size).is_ok(),
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
905 - ReplayBody::try_new(hyper::Body::empty(), max_size).is_ok(),
905 + ReplayBody::try_new(Body::empty(), max_size).is_ok(),
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L919
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/http/retry/src/replay.rs:919:38
|
919 | let (_sender, body) = hyper::Body::channel();
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
919 - let (_sender, body) = hyper::Body::channel();
919 + let (_sender, body) = Body::channel();
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L928
error[E0412]: cannot find type `Body` in crate `hyper`
--> linkerd/http/retry/src/replay.rs:928:36
|
928 | initial: ReplayBody<hyper::Body>,
| ^^^^ not found in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
928 - initial: ReplayBody<hyper::Body>,
928 + initial: ReplayBody<Body>,
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L929
error[E0412]: cannot find type `Body` in crate `hyper`
--> linkerd/http/retry/src/replay.rs:929:35
|
929 | replay: ReplayBody<hyper::Body>,
| ^^^^ not found in `hyper`
|
help: consider importing one of these traits
|
511 + use crate::replay::Body;
|
511 + use http_body::Body;
|
511 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
929 - replay: ReplayBody<hyper::Body>,
929 + replay: ReplayBody<Body>,
|
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L933
error[E0412]: cannot find type `Sender` in module `hyper::body`
--> linkerd/http/retry/src/replay.rs:933:28
|
933 | struct Tx(hyper::body::Sender);
| ^^^^^^ not found in `hyper::body`
|
note: found an item that was configured out
--> /usr/local/cargo/registry/src/index.crates.io-6f17d22bba15001f/hyper-1.5.2/src/body/mod.rs:30:32
|
30 | pub(crate) use self::incoming::Sender;
| ^^^^^^
note: the item is gated here
--> /usr/local/cargo/registry/src/index.crates.io-6f17d22bba15001f/hyper-1.5.2/src/body/mod.rs:29:1
|
29 | #[cfg(all(any(feature = "client", feature = "server"), feature = "http1"))]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider importing one of these structs
|
511 + use std::sync::mpmc::Sender;
|
511 + use std::sync::mpsc::Sender;
|
511 + use tokio::sync::broadcast::Sender;
|
511 + use tokio::sync::mpsc::Sender;
|
and 2 other candidates
help: if you import `Sender`, refer to it directly
|
933 - struct Tx(hyper::body::Sender);
933 + struct Tx(Sender);
|
|
rust-crates (linkerd-metrics)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-metrics)
The operation was canceled.
|
rust-crates (linkerd-http-metrics)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-http-metrics)
The operation was canceled.
|
rust-crates (linkerd-app-inbound)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-app-inbound)
The operation was canceled.
|
rust-crates (linkerd-app-outbound)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-app-outbound)
The operation was canceled.
|
rust-crates (linkerd-app-core)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-app-core)
The operation was canceled.
|
rust-crates (linkerd-app-test)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-app-test)
The operation was canceled.
|
rust-crates (linkerd-proxy-tap)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-proxy-tap)
The operation was canceled.
|
rust-crates (linkerd-app-admin)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-app-admin)
The operation was canceled.
|
rust-crates (linkerd-app-integration)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-app-integration)
The operation was canceled.
|
rust-crates (linkerd-proxy-http)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-http-upgrade)
The job was canceled because "linkerd-http-retry" failed.
|
rust-crates (linkerd-proxy-http)
The operation was canceled.
|
rust-crates (linkerd-http-upgrade)
The operation was canceled.
|
linkerd-install
Process completed with exit code 1.
|
ship-it
Process completed with exit code 1.
|