Skip to content

Commit

Permalink
Bump Rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdejager committed Jun 18, 2024
1 parent 02c6c4e commit 011fa18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RUST_VERSION=1.78.0
RUST_VERSION=1.79.0
DOCKER_TAG=$(shell git describe --tags)
DOCKER_TEMPLATES:=$(wildcard *.Dockerfile.template)
DOCKER_FILES=$(DOCKER_TEMPLATES:%.template=%)
Expand Down
4 changes: 2 additions & 2 deletions src/infra/userdetail_http.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! A libunftp [`UserDetail`](libunftp::auth::user::UserDetail) provider that obtains user detail
//! A libunftp [`UserDetail`](libunftp::auth::UserDetail) provider that obtains user detail
//! over HTTP.

use crate::domain::user::{User, UserDetailError, UserDetailProvider};
Expand All @@ -8,7 +8,7 @@ use http::{Method, Request};
use hyper::{Body, Client};
use url::form_urlencoded;

/// A libunftp [`UserDetail`](libunftp::auth::user::UserDetail) provider that obtains user detail
/// A libunftp [`UserDetail`](libunftp::auth::UserDetail) provider that obtains user detail
/// over HTTP.
#[derive(Debug)]
pub struct HTTPUserDetailProvider {
Expand Down
1 change: 1 addition & 0 deletions src/storage/choose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use crate::domain::user::User;
#[derive(Debug)]
pub struct ChoosingVfs {
pub inner: InnerVfs,
#[allow(dead_code)]
pub log: Arc<slog::Logger>,
}

Expand Down

0 comments on commit 011fa18

Please sign in to comment.