Skip to content

Commit

Permalink
Update to Rust 1.38.0 (#377)
Browse files Browse the repository at this point in the history
Includes formatting changes, as required by the new version of rustfmt.
  • Loading branch information
olix0r authored Oct 16, 2019
1 parent 4866eb2 commit f91035d
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
package:
runs-on: ubuntu-latest
container:
image: docker://rust:1.37-buster
image: docker://rust:1.38.0-buster
steps:
- name: git co
uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fmt:
runs-on: ubuntu-18.04
container:
image: docker://rust:1.37.0-buster
image: docker://rust:1.38.0-buster
steps:
- uses: actions/checkout@v1
- run: rustup component add rustfmt
Expand All @@ -19,7 +19,7 @@ jobs:
lib:
runs-on: ubuntu-18.04
container:
image: docker://rust:1.37.0-buster
image: docker://rust:1.38.0-buster
steps:
- uses: actions/checkout@v1
- run: make test-lib
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# runtime performance.

# 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 PROXY_UNOPTIMIZED

Expand Down
1 change: 0 additions & 1 deletion linkerd/app/core/src/tap/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,4 @@ mod iface {
}

impl ::std::error::Error for NoCapacity {}

}
1 change: 0 additions & 1 deletion linkerd/app/integration/tests/discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,6 @@ mod http1 {
client: client::http1_absolute_uris
}
}

}

mod proxy_to_proxy {
Expand Down
1 change: 0 additions & 1 deletion linkerd/duplex/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,5 +258,4 @@ mod tests {
assert_eq!(duplex.poll().unwrap(), Async::NotReady);
assert_eq!(duplex.poll().unwrap(), Async::Ready(()));
}

}
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.37.0
1.38.0

0 comments on commit f91035d

Please sign in to comment.