Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Build stage #
#################

FROM rust:1.91-slim-trixie AS build
FROM rust:1.92-slim-trixie AS build

ENV DEBIAN_FRONTEND=noninteractive

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.91.0"
channel = "1.92.0"
components = ["rustfmt", "clippy"]
2 changes: 1 addition & 1 deletion src/storage/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use tokio::{
runtime,
sync::Mutex,
};
use tracing::{debug, error, info_span, instrument, trace, warn};
use tracing::{debug, info_span, instrument, trace, warn};
use walkdir::WalkDir;

const ARCHIVE_INDEX_FILE_EXTENSION: &str = "index";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/html.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use lol_html::{element, errors::RewritingError};
use std::sync::Arc;
use tokio::{io::AsyncRead, task::JoinHandle};
use tokio_util::io::ReaderStream;
use tracing::{Span, error, instrument};
use tracing::{Span, instrument};
use tracing_futures::Instrument as _;

const CHANNEL_SIZE: usize = 64;
Expand Down
1 change: 0 additions & 1 deletion src/web/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use axum::{
response::{IntoResponse, Response as AxumResponse},
};
use std::borrow::Cow;
use tracing::error;

#[derive(Debug, thiserror::Error)]
pub enum AxumNope {
Expand Down
Loading