Skip to content

Commit ec290d8

Browse files
Upgrade Rust toolchain (#1407)
1 parent 61643c0 commit ec290d8

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG ARCH
1717
ARG RUSTUP_VERSION=1.27.1
1818

1919
# Update check: https://github.com/rust-lang/rust/tags
20-
ARG RUST_VERSION=1.79.0
20+
ARG RUST_VERSION=1.83.0
2121
ARG RUST_ARCH=${ARCH}-unknown-linux-musl
2222

2323
# https://github.com/sfackler/rust-openssl/issues/1462

josh-proxy/src/bin/josh-proxy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1300,7 +1300,7 @@ async fn call_service(
13001300
.map(|(x, y)| (x.to_string(), y.to_string()))
13011301
.collect();
13021302

1303-
fetch_repos.extend(lazy_refs.iter().map(|(x, y)| x.clone()));
1303+
fetch_repos.extend(lazy_refs.iter().map(|(x, _y)| x.clone()));
13041304

13051305
///////////////
13061306

rust-toolchain.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[toolchain]
2+
channel = "1.83.0"
3+
components = ["rustfmt"]

tests/proxy/get_version.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$ cd ${TESTTMP}
33

44
$ curl -s http://localhost:8002/version
5-
Version: v*.*.* (glob)
5+
Version: *.*.* (glob)
66

77
$ bash ${TESTDIR}/destroy_test_env.sh
88
.

0 commit comments

Comments
 (0)