mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 16:28:15 +00:00
48b328d0d2
* chore(deps): tighten crate dependency features Narrow Tokio and dependency feature declarations for protocols, TLS runtime, utils, targets, and replication based on direct crate usage. Co-Authored-By: heihutu <heihutu@gmail.com> * chore(deps): trim hyper-rustls features Keep direct hyper-rustls features aligned with the actual RustFS call sites. rustfs-targets only needs native root loading and the rustls provider/TLS policy features for MQTT TLS config construction, while rustfs-ecstore needs the HTTP connector protocol features but not webpki roots. Co-Authored-By: heihutu <heihutu@gmail.com> --------- Co-authored-by: heihutu <heihutu@gmail.com>
139 lines
5.3 KiB
TOML
139 lines
5.3 KiB
TOML
# Copyright 2024 RustFS Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
[package]
|
|
name = "rustfs-protocols"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Protocol implementations for RustFS (FTPS, SFTP, etc.)"
|
|
keywords = ["ftp", "sftp", "protocol", "storage", "rustfs"]
|
|
categories = ["network-programming", "filesystem"]
|
|
|
|
[features]
|
|
default = []
|
|
ftps = ["dep:libunftp", "dep:unftp-core", "dep:rustls", "dep:rustfs-tls-runtime", "dep:subtle"]
|
|
swift = [
|
|
"dep:rustfs-keystone",
|
|
"dep:rustfs-ecstore",
|
|
"dep:rustfs-rio",
|
|
"dep:axum",
|
|
"dep:http",
|
|
"dep:tower",
|
|
"dep:regex",
|
|
"dep:percent-encoding",
|
|
"dep:sha2",
|
|
"dep:uuid",
|
|
"dep:futures",
|
|
"dep:http-body-util",
|
|
"dep:tokio-util",
|
|
"dep:serde",
|
|
"dep:urlencoding",
|
|
"dep:md5",
|
|
"dep:quick-xml",
|
|
"dep:hmac",
|
|
"dep:sha1",
|
|
"dep:hex",
|
|
"dep:astral-tokio-tar",
|
|
"dep:base64",
|
|
"dep:async-compression",
|
|
]
|
|
webdav = ["dep:dav-server", "dep:hyper", "dep:hyper-util", "dep:http-body-util", "dep:tokio-rustls", "dep:base64", "dep:rustls", "dep:percent-encoding", "dep:rustfs-tls-runtime", "dep:subtle"]
|
|
sftp = ["dep:russh", "dep:russh-sftp", "dep:uuid", "dep:subtle", "dep:tokio-util", "dep:socket2"]
|
|
|
|
[dependencies]
|
|
# Core RustFS dependencies
|
|
rustfs-iam = { workspace = true }
|
|
rustfs-credentials = { workspace = true }
|
|
rustfs-policy = { workspace = true }
|
|
rustfs-utils = { workspace = true }
|
|
rustfs-config = { workspace = true }
|
|
rustfs-storage-api = { workspace = true }
|
|
rustfs-tls-runtime = { workspace = true, optional = true }
|
|
|
|
# Async dependencies
|
|
tokio = { workspace = true, features = ["fs", "io-util", "net", "rt", "sync", "time"] }
|
|
tracing = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
|
|
# Serialization
|
|
serde_json = { workspace = true, features = ["raw_value"] }
|
|
|
|
# Utilities
|
|
async-trait = { workspace = true }
|
|
time = { workspace = true, features = ["parsing", "formatting", "macros", "serde"] }
|
|
bytes = { workspace = true, features = ["serde"] }
|
|
|
|
# S3 API dependencies
|
|
s3s = { workspace = true, features = ["minio"] }
|
|
|
|
# FTPS specific dependencies (optional)
|
|
libunftp = { workspace = true, optional = true, features = ["experimental"] }
|
|
unftp-core = { workspace = true, optional = true }
|
|
rustls = { workspace = true, default-features = false, optional = true, features = ["aws-lc-rs", "logging", "tls12", "prefer-post-quantum", "std"] }
|
|
|
|
# Swift specific dependencies (optional)
|
|
rustfs-keystone = { workspace = true, optional = true }
|
|
rustfs-ecstore = { workspace = true, optional = true }
|
|
rustfs-rio = { workspace = true, optional = true }
|
|
axum = { workspace = true, optional = true }
|
|
http = { workspace = true, optional = true }
|
|
tower = { workspace = true, optional = true, features = ["timeout"] }
|
|
regex = { workspace = true, optional = true }
|
|
percent-encoding = { workspace = true, optional = true }
|
|
sha2 = { workspace = true, optional = true }
|
|
uuid = { workspace = true, optional = true, features = ["v4", "fast-rng", "macro-diagnostics"] }
|
|
futures = { workspace = true, optional = true }
|
|
http-body-util = { workspace = true, optional = true }
|
|
tokio-util = { workspace = true, optional = true, features = ["rt", "io", "compat"] }
|
|
serde = { workspace = true, optional = true, features = ["derive"] }
|
|
urlencoding = { workspace = true, optional = true }
|
|
md5 = { workspace = true, optional = true }
|
|
quick-xml = { workspace = true, optional = true, features = ["serialize"] }
|
|
hmac = { workspace = true, optional = true }
|
|
sha1 = { workspace = true, optional = true }
|
|
hex = { workspace = true, optional = true }
|
|
astral-tokio-tar = { workspace = true, optional = true }
|
|
base64 = { workspace = true, optional = true }
|
|
async-compression = { workspace = true, optional = true, features = ["tokio", "gzip", "bzip2"] }
|
|
|
|
# WebDAV specific dependencies (optional)
|
|
dav-server = { workspace = true, optional = true }
|
|
hyper = { workspace = true, optional = true, features = ["http2", "http1", "server"] }
|
|
hyper-util = { workspace = true, optional = true, features = ["tokio", "server-auto", "server-graceful", "tracing"] }
|
|
tokio-rustls = { workspace = true, default-features = false, optional = true, features = ["logging", "tls12", "aws-lc-rs"] }
|
|
|
|
# SFTP specific dependencies (optional)
|
|
russh = { workspace = true, optional = true, features = ["serde"] }
|
|
russh-sftp = { workspace = true, optional = true }
|
|
subtle = { workspace = true, optional = true }
|
|
socket2 = { workspace = true, optional = true, features = ["all"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
proptest = "1"
|
|
tracing-subscriber = { workspace = true, features = ["env-filter", "time"] }
|
|
tokio = { workspace = true, features = ["test-util", "macros", "fs"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|