mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
* feat: improve code for notify * upgrade starshard version * upgrade version * Fix ETag format to comply with HTTP standards by wrapping with quotes (#592) * Initial plan * Fix ETag format to comply with HTTP standards by wrapping with quotes Co-authored-by: overtrue <1472352+overtrue@users.noreply.github.com> * bufigx --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: overtrue <1472352+overtrue@users.noreply.github.com> Co-authored-by: overtrue <anzhengchao@gmail.com> * Improve lock (#596) * improve lock Signed-off-by: Mu junxiang <1948535941@qq.com> * feat(tests): add wait_for_object_absence helper and improve lifecycle test reliability Signed-off-by: Mu junxiang <1948535941@qq.com> * chore: remove dirty docs Signed-off-by: Mu junxiang <1948535941@qq.com> --------- Signed-off-by: Mu junxiang <1948535941@qq.com> * feat(append): implement object append operations with state tracking (#599) * feat(append): implement object append operations with state tracking Signed-off-by: junxiang Mu <1948535941@qq.com> * chore: rebase Signed-off-by: junxiang Mu <1948535941@qq.com> --------- Signed-off-by: junxiang Mu <1948535941@qq.com> * build(deps): upgrade s3s (#595) Co-authored-by: loverustfs <155562731+loverustfs@users.noreply.github.com> * fix: validate mqtt broker * improve code for `import` * fix * improve * remove logger from `rustfs-obs` crate * remove code for config Observability * fix * improve code * fix comment * up * up * upgrade version * fix * fmt * upgrade tokio version to 1.48.0 * upgrade `datafusion` and `reed-solomon-simd` version * fix * fmt * improve code for notify webhook example * improve code * fix * fix * fmt --------- Signed-off-by: Mu junxiang <1948535941@qq.com> Signed-off-by: junxiang Mu <1948535941@qq.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: overtrue <1472352+overtrue@users.noreply.github.com> Co-authored-by: overtrue <anzhengchao@gmail.com> Co-authored-by: guojidan <63799833+guojidan@users.noreply.github.com> Co-authored-by: Nugine <nugine@foxmail.com> Co-authored-by: loverustfs <155562731+loverustfs@users.noreply.github.com>
305 lines
11 KiB
TOML
305 lines
11 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.
|
|
|
|
[workspace]
|
|
members = [
|
|
"rustfs", # Core file system implementation
|
|
"crates/appauth", # Application authentication and authorization
|
|
"crates/audit", # Audit target management system with multi-target fan-out
|
|
"crates/common", # Shared utilities and data structures
|
|
"crates/config", # Configuration management
|
|
"crates/crypto", # Cryptography and security features
|
|
"crates/ecstore", # Erasure coding storage implementation
|
|
"crates/e2e_test", # End-to-end test suite
|
|
"crates/filemeta", # File metadata management
|
|
"crates/iam", # Identity and Access Management
|
|
"crates/lock", # Distributed locking implementation
|
|
"crates/madmin", # Management dashboard and admin API interface
|
|
"crates/notify", # Notification system for events
|
|
"crates/obs", # Observability utilities
|
|
"crates/policy", # Policy management
|
|
"crates/protos", # Protocol buffer definitions
|
|
"crates/rio", # Rust I/O utilities and abstractions
|
|
"crates/targets", # Target-specific configurations and utilities
|
|
"crates/s3select-api", # S3 Select API interface
|
|
"crates/s3select-query", # S3 Select query engine
|
|
"crates/signer", # client signer
|
|
"crates/checksums", # client checksums
|
|
"crates/utils", # Utility functions and helpers
|
|
"crates/workers", # Worker thread pools and task scheduling
|
|
"crates/zip", # ZIP file handling and compression
|
|
"crates/ahm", # Asynchronous Hash Map for concurrent data structures
|
|
"crates/mcp", # MCP server for S3 operations
|
|
"crates/kms", # Key Management Service
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/rustfs/rustfs"
|
|
rust-version = "1.85"
|
|
version = "0.0.5"
|
|
homepage = "https://rustfs.com"
|
|
description = "RustFS is a high-performance distributed object storage software built using Rust, one of the most popular languages worldwide. "
|
|
keywords = ["RustFS", "Minio", "object-storage", "filesystem", "s3"]
|
|
categories = ["web-programming", "development-tools", "filesystem", "network-programming"]
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "deny"
|
|
|
|
[workspace.lints.clippy]
|
|
all = "warn"
|
|
|
|
[workspace.dependencies]
|
|
rustfs-ahm = { path = "crates/ahm", version = "0.0.5" }
|
|
rustfs-s3select-api = { path = "crates/s3select-api", version = "0.0.5" }
|
|
rustfs-appauth = { path = "crates/appauth", version = "0.0.5" }
|
|
rustfs-audit = { path = "crates/audit", version = "0.0.5" }
|
|
rustfs-common = { path = "crates/common", version = "0.0.5" }
|
|
rustfs-crypto = { path = "crates/crypto", version = "0.0.5" }
|
|
rustfs-ecstore = { path = "crates/ecstore", version = "0.0.5" }
|
|
rustfs-iam = { path = "crates/iam", version = "0.0.5" }
|
|
rustfs-lock = { path = "crates/lock", version = "0.0.5" }
|
|
rustfs-madmin = { path = "crates/madmin", version = "0.0.5" }
|
|
rustfs-policy = { path = "crates/policy", version = "0.0.5" }
|
|
rustfs-protos = { path = "crates/protos", version = "0.0.5" }
|
|
rustfs-s3select-query = { path = "crates/s3select-query", version = "0.0.5" }
|
|
rustfs = { path = "./rustfs", version = "0.0.5" }
|
|
rustfs-zip = { path = "./crates/zip", version = "0.0.5" }
|
|
rustfs-config = { path = "./crates/config", version = "0.0.5" }
|
|
rustfs-obs = { path = "crates/obs", version = "0.0.5" }
|
|
rustfs-notify = { path = "crates/notify", version = "0.0.5" }
|
|
rustfs-utils = { path = "crates/utils", version = "0.0.5" }
|
|
rustfs-rio = { path = "crates/rio", version = "0.0.5" }
|
|
rustfs-filemeta = { path = "crates/filemeta", version = "0.0.5" }
|
|
rustfs-signer = { path = "crates/signer", version = "0.0.5" }
|
|
rustfs-checksums = { path = "crates/checksums", version = "0.0.5" }
|
|
rustfs-workers = { path = "crates/workers", version = "0.0.5" }
|
|
rustfs-mcp = { path = "crates/mcp", version = "0.0.5" }
|
|
rustfs-targets = { path = "crates/targets", version = "0.0.5" }
|
|
rustfs-kms = { path = "crates/kms", version = "0.0.5" }
|
|
aes-gcm = { version = "0.10.3", features = ["std"] }
|
|
anyhow = "1.0.100"
|
|
arc-swap = "1.7.1"
|
|
argon2 = { version = "0.5.3", features = ["std"] }
|
|
atoi = "2.0.0"
|
|
async-channel = "2.5.0"
|
|
async-recursion = "1.1.1"
|
|
async-trait = "0.1.89"
|
|
async-compression = { version = "0.4.19" }
|
|
atomic_enum = "0.3.0"
|
|
aws-config = { version = "1.8.8" }
|
|
aws-credential-types = { version = "1.2.8" }
|
|
aws-smithy-types = { version = "1.3.3" }
|
|
aws-sdk-s3 = { version = "1.108.0", default-features = false, features = ["sigv4a", "rustls", "rt-tokio"] }
|
|
axum = "0.8.6"
|
|
axum-extra = "0.10.3"
|
|
axum-server = { version = "0.7.2", features = ["tls-rustls-no-provider"], default-features = false }
|
|
base64-simd = "0.8.0"
|
|
base64 = "0.22.1"
|
|
brotli = "8.0.2"
|
|
bytes = { version = "1.10.1", features = ["serde"] }
|
|
bytesize = "2.1.0"
|
|
byteorder = "1.5.0"
|
|
cfg-if = "1.0.4"
|
|
convert_case = "0.8.0"
|
|
crc-fast = "1.3.0"
|
|
chacha20poly1305 = { version = "0.10.1" }
|
|
chrono = { version = "0.4.42", features = ["serde"] }
|
|
clap = { version = "4.5.49", features = ["derive", "env"] }
|
|
const-str = { version = "0.7.0", features = ["std", "proc"] }
|
|
crc32fast = "1.5.0"
|
|
criterion = { version = "0.7", features = ["html_reports"] }
|
|
crossbeam-queue = "0.3.12"
|
|
datafusion = "50.2.0"
|
|
derive_builder = "0.20.2"
|
|
enumset = "1.1.10"
|
|
flatbuffers = "25.9.23"
|
|
flate2 = "1.1.4"
|
|
flexi_logger = { version = "0.31.7", features = ["trc", "dont_minimize_extra_stacks", "compress", "kv"] }
|
|
form_urlencoded = "1.2.2"
|
|
futures = "0.3.31"
|
|
futures-core = "0.3.31"
|
|
futures-util = "0.3.31"
|
|
glob = "0.3.3"
|
|
hashbrown = { version = "0.16.0", features = ["serde", "rayon"] }
|
|
hex-simd = "0.8.0"
|
|
highway = { version = "1.3.0" }
|
|
hickory-resolver = { version = "0.25.2", features = ["tls-ring"] }
|
|
hmac = "0.12.1"
|
|
hyper = "1.7.0"
|
|
hyper-util = { version = "0.1.17", features = [
|
|
"tokio",
|
|
"server-auto",
|
|
"server-graceful",
|
|
] }
|
|
hyper-rustls = { version = "0.27.7", default-features = false, features = ["native-tokio", "http1", "tls12", "logging", "http2", "ring", "webpki-roots"] }
|
|
http = "1.3.1"
|
|
http-body = "1.0.1"
|
|
humantime = "2.3.0"
|
|
ipnetwork = { version = "0.21.1", features = ["serde"] }
|
|
jsonwebtoken = { version = "10.0.0", features = ["rust_crypto"] }
|
|
lazy_static = "1.5.0"
|
|
libc = "0.2.177"
|
|
libsystemd = { version = "0.7.2" }
|
|
local-ip-address = "0.6.5"
|
|
lz4 = "1.28.1"
|
|
matchit = "0.8.4"
|
|
md-5 = "0.10.6"
|
|
md5 = "0.8.0"
|
|
mime_guess = "2.0.5"
|
|
moka = { version = "0.12.11", features = ["future"] }
|
|
netif = "0.1.6"
|
|
nix = { version = "0.30.1", features = ["fs"] }
|
|
nu-ansi-term = "0.50.3"
|
|
num_cpus = { version = "1.17.0" }
|
|
nvml-wrapper = "0.11.0"
|
|
object_store = "0.12.4"
|
|
once_cell = "1.21.3"
|
|
opentelemetry = { version = "0.31.0" }
|
|
opentelemetry-appender-tracing = { version = "0.31.1", features = [
|
|
"experimental_use_tracing_span_context",
|
|
"experimental_metadata_attributes",
|
|
"spec_unstable_logs_enabled"
|
|
] }
|
|
opentelemetry_sdk = { version = "0.31.0" }
|
|
opentelemetry-stdout = { version = "0.31.0" }
|
|
opentelemetry-otlp = { version = "0.31.0", default-features = false, features = [
|
|
"grpc-tonic", "gzip-tonic", "trace", "metrics", "logs", "internal-logs"
|
|
] }
|
|
opentelemetry-semantic-conventions = { version = "0.31.0", features = [
|
|
"semconv_experimental",
|
|
] }
|
|
parking_lot = "0.12.5"
|
|
path-absolutize = "3.1.1"
|
|
path-clean = "1.0.1"
|
|
blake3 = { version = "1.8.2" }
|
|
pbkdf2 = "0.12.2"
|
|
pin-project-lite = "0.2.16"
|
|
prost = "0.14.1"
|
|
pretty_assertions = "1.4.1"
|
|
quick-xml = "0.38.3"
|
|
rand = "0.9.2"
|
|
rayon = "1.11.0"
|
|
reed-solomon-simd = { version = "3.1.0" }
|
|
regex = { version = "1.12.2" }
|
|
reqwest = { version = "0.12.24", default-features = false, features = [
|
|
"rustls-tls-webpki-roots",
|
|
"charset",
|
|
"http2",
|
|
"system-proxy",
|
|
"stream",
|
|
"json",
|
|
"blocking",
|
|
] }
|
|
rmcp = { version = "0.8.1" }
|
|
rmp = { version = "0.8.14" }
|
|
rmp-serde = { version = "1.3.0" }
|
|
rsa = { version = "0.9.8" }
|
|
rumqttc = { version = "0.25.0" }
|
|
rust-embed = { version = "8.7.2" }
|
|
rustc-hash = { version = "2.1.1" }
|
|
rustls = { version = "0.23.32", features = ["ring", "logging", "std", "tls12"], default-features = false }
|
|
rustls-pki-types = "1.12.0"
|
|
rustls-pemfile = "2.2.0"
|
|
s3s = { git = "https://github.com/s3s-project/s3s.git", rev = "f76013a52de2c8d44f6aa43182f1f1a938d2ad03", features = ["minio"] }
|
|
schemars = "1.0.4"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = { version = "1.0.145", features = ["raw_value"] }
|
|
serde_urlencoded = "0.7.1"
|
|
serial_test = "3.2.0"
|
|
sha1 = "0.10.6"
|
|
sha2 = "0.10.9"
|
|
shadow-rs = { version = "1.4.0", default-features = false }
|
|
siphasher = "1.0.1"
|
|
smallvec = { version = "1.15.1", features = ["serde"] }
|
|
smartstring = "1.0.1"
|
|
snafu = "0.8.9"
|
|
snap = "1.1.1"
|
|
socket2 = "0.6.1"
|
|
starshard = { version = "0.5.0", features = ["rayon", "async", "serde"] }
|
|
strum = { version = "0.27.2", features = ["derive"] }
|
|
sysinfo = "0.37.1"
|
|
sysctl = "0.7.1"
|
|
tempfile = "3.23.0"
|
|
temp-env = "0.3.6"
|
|
test-case = "3.3.1"
|
|
thiserror = "2.0.17"
|
|
time = { version = "0.3.44", features = [
|
|
"std",
|
|
"parsing",
|
|
"formatting",
|
|
"macros",
|
|
"serde",
|
|
] }
|
|
tokio = { version = "1.48.0", features = ["fs", "rt-multi-thread"] }
|
|
tokio-rustls = { version = "0.26.4", default-features = false, features = ["logging", "tls12", "ring"] }
|
|
tokio-stream = { version = "0.1.17" }
|
|
tokio-tar = "0.3.1"
|
|
tokio-test = "0.4.4"
|
|
tokio-util = { version = "0.7.16", features = ["io", "compat"] }
|
|
tonic = { version = "0.14.2", features = ["gzip"] }
|
|
tonic-prost = { version = "0.14.2" }
|
|
tonic-prost-build = { version = "0.14.2" }
|
|
tower = { version = "0.5.2", features = ["timeout"] }
|
|
tower-http = { version = "0.6.6", features = ["cors"] }
|
|
tracing = { version = "0.1.41" }
|
|
tracing-core = "0.1.34"
|
|
tracing-error = "0.2.1"
|
|
tracing-opentelemetry = "0.32.0"
|
|
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "time"] }
|
|
transform-stream = "0.3.1"
|
|
url = "2.5.7"
|
|
urlencoding = "2.1.3"
|
|
uuid = { version = "1.18.1", features = [
|
|
"v4",
|
|
"fast-rng",
|
|
"macro-diagnostics",
|
|
] }
|
|
vaultrs = { version = "0.7.4" }
|
|
walkdir = "2.5.0"
|
|
wildmatch = { version = "2.5.0", features = ["serde"] }
|
|
zeroize = { version = "1.8.2", features = ["derive"] }
|
|
winapi = { version = "0.3.9" }
|
|
xxhash-rust = { version = "0.8.15", features = ["xxh64", "xxh3"] }
|
|
zip = "6.0.0"
|
|
zstd = "0.13.3"
|
|
|
|
|
|
[workspace.metadata.cargo-shear]
|
|
ignored = ["rustfs", "rust-i18n", "rustfs-mcp", "tokio-test", "rustfs-audit"]
|
|
|
|
[profile.wasm-dev]
|
|
inherits = "dev"
|
|
opt-level = 1
|
|
|
|
[profile.server-dev]
|
|
inherits = "dev"
|
|
|
|
[profile.android-dev]
|
|
inherits = "dev"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
|
|
[profile.production]
|
|
inherits = "release"
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|