chore(deps): upgrade to hyper 1.x #1186
pr.yml
on: pull_request
Annotations
36 errors
rust-crates (linkerd-http-metrics):
linkerd/metrics/src/serve.rs#L44
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:44:43
|
44 | .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
44 - .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
44 + .body(BoxBody::new(Body::from(writer.finish()?)))
|
|
rust-crates (linkerd-http-metrics):
linkerd/metrics/src/serve.rs#L51
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:51:43
|
51 | .body(BoxBody::new(hyper::Body::from(writer)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
51 - .body(BoxBody::new(hyper::Body::from(writer)))
51 + .body(BoxBody::new(Body::from(writer)))
|
|
rust-crates (linkerd-http-metrics)
Process completed with exit code 1.
|
rust-crates (linkerd-metrics):
linkerd/metrics/src/serve.rs#L44
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:44:43
|
44 | .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
44 - .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
44 + .body(BoxBody::new(Body::from(writer.finish()?)))
|
|
rust-crates (linkerd-metrics):
linkerd/metrics/src/serve.rs#L51
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:51:43
|
51 | .body(BoxBody::new(hyper::Body::from(writer)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
51 - .body(BoxBody::new(hyper::Body::from(writer)))
51 + .body(BoxBody::new(Body::from(writer)))
|
|
rust-crates (linkerd-metrics):
linkerd/metrics/src/serve.rs#L44
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:44:43
|
44 | .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
44 - .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
44 + .body(BoxBody::new(Body::from(writer.finish()?)))
|
|
rust-crates (linkerd-metrics):
linkerd/metrics/src/serve.rs#L51
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:51:43
|
51 | .body(BoxBody::new(hyper::Body::from(writer)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
51 - .body(BoxBody::new(hyper::Body::from(writer)))
51 + .body(BoxBody::new(Body::from(writer)))
|
|
rust-crates (linkerd-metrics)
Process completed with exit code 1.
|
rust-crates (linkerd-proxy-http)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-proxy-http):
linkerd/http/insert/src/lib.rs#L289
error[E0277]: the trait bound `V: Clone` is not satisfied
--> linkerd/http/insert/src/lib.rs:289:37
|
289 | rsp.extensions_mut().insert(this.lazy.value());
| ------ ^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `V`
| |
| required by a bound introduced by this call
|
note: required by a bound in `Extensions::insert`
--> /usr/local/cargo/registry/src/index.crates.io-6f17d22bba15001f/http-1.2.0/src/extensions.rs:62:22
|
62 | pub fn insert<T: Clone + Send + Sync + 'static>(&mut self, val: T) -> Option<T> {
| ^^^^^ required by this bound in `Extensions::insert`
help: consider further restricting this bound
|
282 | V: Send + Sync + 'static + std::clone::Clone,
| +++++++++++++++++++
|
rust-crates (linkerd-proxy-http):
linkerd/http/insert/src/lib.rs#L289
error[E0277]: the trait bound `V: Clone` is not satisfied
--> linkerd/http/insert/src/lib.rs:289:37
|
289 | rsp.extensions_mut().insert(this.lazy.value());
| ------ ^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `V`
| |
| required by a bound introduced by this call
|
note: required by a bound in `Extensions::insert`
--> /usr/local/cargo/registry/src/index.crates.io-6f17d22bba15001f/http-1.2.0/src/extensions.rs:62:22
|
62 | pub fn insert<T: Clone + Send + Sync + 'static>(&mut self, val: T) -> Option<T> {
| ^^^^^ required by this bound in `Extensions::insert`
help: consider further restricting this bound
|
282 | V: Send + Sync + 'static + std::clone::Clone,
| +++++++++++++++++++
|
rust-crates (linkerd-proxy-http)
Process completed with exit code 1.
|
rust-crates (linkerd-http-upgrade)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-http-upgrade)
The operation was canceled.
|
rust-crates (hyper-balance)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (hyper-balance)
The operation was canceled.
|
rust-crates (linkerd-app-integration)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-app-integration)
The operation was canceled.
|
rust-crates (linkerd-app-outbound)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-app-outbound)
The operation was canceled.
|
rust-crates (linkerd-app-inbound)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-app-inbound)
The operation was canceled.
|
rust-crates (linkerd-http-executor)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-http-executor)
The operation was canceled.
|
rust-crates (linkerd-app-admin)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-app-admin)
The operation was canceled.
|
rust-crates (linkerd-app-test)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-app-test)
The operation was canceled.
|
rust-crates (linkerd-app-core)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-app-core)
The operation was canceled.
|
rust-crates (linkerd-proxy-tap)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-proxy-tap)
The operation was canceled.
|
rust-crates (linkerd-http-retry)
The job was canceled because "linkerd-http-metrics" failed.
|
rust-crates (linkerd-http-retry)
The operation was canceled.
|
linkerd-install
Process completed with exit code 1.
|
ship-it
Process completed with exit code 1.
|