Skip to content

Commit 7c42414

Browse files
Update Rust to v1.74.0 (#7543)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 93b6d5b commit 7c42414

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust
2-
ARG RUST_VERSION=1.73.0@sha256:73af736ea21c14181c257bf674c7095a8bad6343a1eadd327a8bf1ce1c5209b4
2+
ARG RUST_VERSION=1.74.0
33

44
FROM rust:$RUST_VERSION
55

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.73.0"
2+
channel = "1.74.0"

src/bin/background-worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fn main() -> anyhow::Result<()> {
7979
let connection_pool = r2d2::Pool::builder()
8080
.max_size(10)
8181
.min_idle(Some(0))
82-
.build_unchecked(ConnectionManager::new(&db_url));
82+
.build_unchecked(ConnectionManager::new(db_url));
8383

8484
let connection_pool = DieselPool::new_background_worker(connection_pool);
8585

0 commit comments

Comments
 (0)