build(deps): bump the dependencies group with 4 updates (#1955)

This commit is contained in:
houseme
2026-02-25 19:21:20 +08:00
committed by GitHub
parent aea7f41149
commit 024a3107d8
11 changed files with 70 additions and 93 deletions
-1
View File
@@ -71,7 +71,6 @@ rustfs-scanner = { workspace = true }
# Async Runtime and Networking
async-trait = { workspace = true }
axum.workspace = true
axum-server = { workspace = true }
futures.workspace = true
futures-util.workspace = true
hyper.workspace = true
+2 -4
View File
@@ -17,10 +17,8 @@ use http::HeaderMap;
use rustfs_credentials::Credentials;
use rustfs_iam::store::object::ObjectStore;
use rustfs_iam::sys::IamSys;
use rustfs_policy::policy::Args;
use rustfs_policy::policy::action::Action;
use s3s::S3Result;
use s3s::s3_error;
use rustfs_policy::policy::{Args, action::Action};
use s3s::{S3Result, s3_error};
use std::collections::HashMap;
use std::sync::Arc;
+1 -2
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
use crate::admin::console::is_console_path;
use crate::admin::console::make_console_server;
use crate::admin::console::{is_console_path, make_console_server};
use crate::server::{ADMIN_PREFIX, HEALTH_PREFIX, HEALTH_READY_PATH, PROFILE_CPU_PATH, PROFILE_MEMORY_PATH, RPC_PREFIX};
use hyper::HeaderMap;
use hyper::Method;
+1 -3
View File
@@ -12,9 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
use super::router::AdminOperation;
use super::router::Operation;
use super::router::S3Router;
use crate::admin::router::{AdminOperation, Operation, S3Router};
use crate::server::RPC_PREFIX;
use futures::StreamExt;
use http::StatusCode;
+2 -2
View File
@@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// Ensure the correct path for parse_license is imported
use super::compress::{CompressionConfig, CompressionPredicate};
// Import HTTP server components and compression configuration
use crate::admin;
use crate::auth::IAMAuth;
use crate::config;
use crate::server::{
ReadinessGateLayer, RemoteAddr, ServiceState, ServiceStateManager,
compress::{CompressionConfig, CompressionPredicate},
hybrid::hybrid,
layer::{ConditionalCorsLayer, RedirectLayer},
};