Skip to content

Commit

Permalink
Update Rust to v1.74.0 (#7543)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Nov 16, 2023
1 parent 93b6d5b commit 7c42414
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust
ARG RUST_VERSION=1.73.0@sha256:73af736ea21c14181c257bf674c7095a8bad6343a1eadd327a8bf1ce1c5209b4
ARG RUST_VERSION=1.74.0

FROM rust:$RUST_VERSION

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.73.0"
channel = "1.74.0"
2 changes: 1 addition & 1 deletion src/bin/background-worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fn main() -> anyhow::Result<()> {
let connection_pool = r2d2::Pool::builder()
.max_size(10)
.min_idle(Some(0))
.build_unchecked(ConnectionManager::new(&db_url));
.build_unchecked(ConnectionManager::new(db_url));

let connection_pool = DieselPool::new_background_worker(connection_pool);

Expand Down

0 comments on commit 7c42414

Please sign in to comment.