Update to Rust 1.38.0 (#377)
Includes formatting changes, as required by the new version of rustfmt.
This commit is contained in:
parent
4866eb2aeb
commit
f91035de82
|
|
@ -9,7 +9,7 @@ jobs:
|
||||||
package:
|
package:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: docker://rust:1.37-buster
|
image: docker://rust:1.38.0-buster
|
||||||
steps:
|
steps:
|
||||||
- name: git co
|
- name: git co
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
fmt:
|
fmt:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
container:
|
container:
|
||||||
image: docker://rust:1.37.0-buster
|
image: docker://rust:1.38.0-buster
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- run: rustup component add rustfmt
|
- run: rustup component add rustfmt
|
||||||
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
lib:
|
lib:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
container:
|
container:
|
||||||
image: docker://rust:1.37.0-buster
|
image: docker://rust:1.38.0-buster
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- run: make test-lib
|
- run: make test-lib
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
# runtime performance.
|
# runtime performance.
|
||||||
|
|
||||||
# rather than updating this manually, run update-rust-version.sh
|
# rather than updating this manually, run update-rust-version.sh
|
||||||
ARG RUST_IMAGE=rust:1.37.0-buster
|
ARG RUST_IMAGE=rust:1.38.0-buster
|
||||||
ARG RUNTIME_IMAGE=gcr.io/linkerd-io/proxy:edge-19.10.2
|
ARG RUNTIME_IMAGE=gcr.io/linkerd-io/proxy:edge-19.10.2
|
||||||
ARG PROXY_UNOPTIMIZED
|
ARG PROXY_UNOPTIMIZED
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -160,5 +160,4 @@ mod iface {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ::std::error::Error for NoCapacity {}
|
impl ::std::error::Error for NoCapacity {}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -721,7 +721,6 @@ mod http1 {
|
||||||
client: client::http1_absolute_uris
|
client: client::http1_absolute_uris
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mod proxy_to_proxy {
|
mod proxy_to_proxy {
|
||||||
|
|
|
||||||
|
|
@ -258,5 +258,4 @@ mod tests {
|
||||||
assert_eq!(duplex.poll().unwrap(), Async::NotReady);
|
assert_eq!(duplex.poll().unwrap(), Async::NotReady);
|
||||||
assert_eq!(duplex.poll().unwrap(), Async::Ready(()));
|
assert_eq!(duplex.poll().unwrap(), Async::Ready(()));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.37.0
|
1.38.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue