diff options
author | 2025-04-08 22:56:40 +0200 | |
---|---|---|
committer | 2025-04-08 22:56:40 +0200 | |
commit | 294d634601bdd71f056101c64e00d7a5a7fc5ae2 (patch) | |
tree | a9b24201cc1ed44d9a470a03a2a9066bc98cb83f /gitolfs3-server/src/main.rs | |
parent | 4a26f611b697907110459631da4d4a0f049440f9 (diff) | |
download | gitolfs3-294d634601bdd71f056101c64e00d7a5a7fc5ae2.tar.gz gitolfs3-294d634601bdd71f056101c64e00d7a5a7fc5ae2.zip |
Switch to Rust 2024, update dependencies
Diffstat (limited to 'gitolfs3-server/src/main.rs')
-rw-r--r-- | gitolfs3-server/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitolfs3-server/src/main.rs b/gitolfs3-server/src/main.rs index 46e840a..0067996 100644 --- a/gitolfs3-server/src/main.rs +++ b/gitolfs3-server/src/main.rs | |||
@@ -9,12 +9,12 @@ use config::Config; | |||
9 | use dlimit::DownloadLimiter; | 9 | use dlimit::DownloadLimiter; |
10 | 10 | ||
11 | use axum::{ | 11 | use axum::{ |
12 | Router, ServiceExt, | ||
12 | extract::OriginalUri, | 13 | extract::OriginalUri, |
13 | http::{self, Uri}, | 14 | http::{self, Uri}, |
14 | routing::{get, post}, | 15 | routing::{get, post}, |
15 | Router, ServiceExt, | ||
16 | }; | 16 | }; |
17 | use handler::{handle_batch, handle_obj_download, AppState}; | 17 | use handler::{AppState, handle_batch, handle_obj_download}; |
18 | use std::{process::ExitCode, sync::Arc}; | 18 | use std::{process::ExitCode, sync::Arc}; |
19 | use tokio::net::TcpListener; | 19 | use tokio::net::TcpListener; |
20 | use tower::Layer; | 20 | use tower::Layer; |