cbb6f9c76f
* chore(deps): bump the dependencies group with 6 updates Bumps the dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [hyper](https://github.com/hyperium/hyper) | `1.10.0` | `1.10.1` | | [serial_test](https://github.com/palfrey/serial_test) | `3.4.0` | `3.5.0` | | [snafu](https://github.com/shepmaster/snafu) | `0.9.0` | `0.9.1` | | [uuid](https://github.com/uuid-rs/uuid) | `1.23.1` | `1.23.2` | | [dial9-tokio-telemetry](https://github.com/dial9-rs/dial9-tokio-telemetry) | `0.3.12` | `0.3.13` | | [pyroscope](https://github.com/grafana/pyroscope-rs) | `2.0.5` | `2.0.6` | Updates `hyper` from 1.10.0 to 1.10.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.10.0...v1.10.1) Updates `serial_test` from 3.4.0 to 3.5.0 - [Release notes](https://github.com/palfrey/serial_test/releases) - [Commits](https://github.com/palfrey/serial_test/compare/v3.4.0...v3.5.0) Updates `snafu` from 0.9.0 to 0.9.1 - [Changelog](https://github.com/shepmaster/snafu/blob/main/CHANGELOG.md) - [Commits](https://github.com/shepmaster/snafu/compare/0.9.0...0.9.1) Updates `uuid` from 1.23.1 to 1.23.2 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.23.1...v1.23.2) Updates `dial9-tokio-telemetry` from 0.3.12 to 0.3.13 - [Release notes](https://github.com/dial9-rs/dial9-tokio-telemetry/releases) - [Changelog](https://github.com/dial9-rs/dial9/blob/main/CHANGELOG.md) - [Commits](https://github.com/dial9-rs/dial9-tokio-telemetry/compare/dial9-tokio-telemetry-v0.3.12...dial9-tokio-telemetry-v0.3.13) Updates `pyroscope` from 2.0.5 to 2.0.6 - [Release notes](https://github.com/grafana/pyroscope-rs/releases) - [Changelog](https://github.com/grafana/pyroscope-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/grafana/pyroscope-rs/compare/lib-2.0.5...lib-2.0.6) --- updated-dependencies: - dependency-name: hyper dependency-version: 1.10.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serial_test dependency-version: 3.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: snafu dependency-version: 0.9.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-version: 1.23.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: dial9-tokio-telemetry dependency-version: 0.3.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: pyroscope dependency-version: 2.0.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * fix(profiling): pin pyroscope to 2.0.5, add jemalloc memory profiling, unify platform gates Pin pyroscope to =2.0.5 to avoid duplicate `perf_signal_handler` symbol caused by 2.0.6 vendoring pprof-rs internally. 2.0.5 depends on external pprof-pyroscope-fork (v0.1500.4), which Cargo unifies with the workspace's pprof-pyroscope-fork — a single symbol instance, no linker collision. Add jemalloc_backend for continuous memory profiling export to Pyroscope, alongside the existing pprof-based CPU profiling. Both CPU and memory profiling now work on linux and macos. Unify platform gates from `cfg(all(target_os = "linux", target_env = "gnu", target_arch = "x86_64"))` to `cfg(any(target_os = "linux", target_os = "macos"))`, switching macOS global allocator from mimalloc to jemalloc. * style: format cfg attributes in allocator_reclaim.rs * chore(deps): ignore pyroscope 2.x in dependabot, add profile_type tag Add pyroscope 2.x to dependabot ignore list to prevent auto-upgrade past 2.0.5 (>=2.0.6 vendors pprof-rs, causing duplicate symbol conflict). Add profile_type=cpu tag to CPU profiling agent for differentiation from memory profiling agent in Pyroscope UI. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: houseme <[email protected]>
211 lines
6.9 KiB
TOML
211 lines
6.9 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"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
homepage.workspace = true
|
|
default-run = "rustfs"
|
|
description = "RustFS is a high-performance, distributed file system designed for modern cloud-native applications, providing efficient data storage and retrieval with advanced features like S3 Select, IAM, and policy management."
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
documentation = "https://docs.rustfs.com/"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "rustfs"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "rustfs"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "manual-test-dial9"
|
|
path = "tests/manual/test_dial9.rs"
|
|
test = false
|
|
bench = false
|
|
required-features = ["manual-test-runners"]
|
|
|
|
[features]
|
|
default = ["ftps", "webdav"]
|
|
metrics-gpu = ["rustfs-obs/gpu"]
|
|
ftps = ["rustfs-protocols/ftps"]
|
|
swift = ["rustfs-protocols/swift"]
|
|
webdav = ["rustfs-protocols/webdav"]
|
|
sftp = ["rustfs-protocols/sftp"]
|
|
license = []
|
|
io-scheduler-debug = [] # Enable debug information in I/O scheduler
|
|
tracing-chunk-debug = [] # Enable per-chunk tracing in data plane (high noise, for debugging only)
|
|
full = ["metrics-gpu", "ftps", "swift", "webdav", "sftp"]
|
|
manual-test-runners = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# RustFS Internal Crates
|
|
rustfs-heal = { workspace = true }
|
|
rustfs-audit = { workspace = true }
|
|
rustfs-common = { workspace = true }
|
|
rustfs-config = { workspace = true, features = ["constants", "notify"] }
|
|
rustfs-crypto = { workspace = true }
|
|
rustfs-credentials = { workspace = true }
|
|
rustfs-ecstore = { workspace = true }
|
|
rustfs-filemeta.workspace = true
|
|
rustfs-iam = { workspace = true }
|
|
rustfs-keystone = { workspace = true }
|
|
rustfs-kms = { workspace = true }
|
|
rustfs-lock.workspace = true
|
|
rustfs-madmin = { workspace = true }
|
|
rustfs-notify = { workspace = true }
|
|
rustfs-obs = { workspace = true }
|
|
rustfs-policy = { workspace = true }
|
|
rustfs-protocols = { workspace = true }
|
|
rustfs-protos = { workspace = true }
|
|
rustfs-rio.workspace = true
|
|
rustfs-s3-types = { workspace = true }
|
|
rustfs-s3-ops = { workspace = true }
|
|
rustfs-data-usage = { workspace = true }
|
|
rustfs-s3select-api = { workspace = true }
|
|
rustfs-s3select-query = { workspace = true }
|
|
rustfs-targets = { workspace = true }
|
|
rustfs-tls-runtime = { workspace = true }
|
|
rustfs-trusted-proxies = { workspace = true }
|
|
rustfs-utils = { workspace = true, features = ["full"] }
|
|
rustfs-zip = { workspace = true }
|
|
rustfs-io-core = { workspace = true }
|
|
rustfs-io-metrics = { workspace = true }
|
|
rustfs-object-capacity = { workspace = true }
|
|
rustfs-concurrency = { workspace = true }
|
|
rustfs-scanner = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
# Async Runtime and Networking
|
|
async-trait = { workspace = true }
|
|
axum.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
hyper.workspace = true
|
|
hyper-util.workspace = true
|
|
http.workspace = true
|
|
http-body.workspace = true
|
|
http-body-util.workspace = true
|
|
reqwest = { workspace = true }
|
|
socket2 = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "signal", "process", "io-util", "io-uring"] }
|
|
tokio-rustls = { workspace = true }
|
|
aws-sdk-s3 = { workspace = true }
|
|
tokio-stream.workspace = true
|
|
tokio-util.workspace = true
|
|
tonic = { workspace = true }
|
|
tower.workspace = true
|
|
tower-http = { workspace = true, features = ["trace", "compression-full", "cors", "catch-panic", "timeout", "limit", "request-id", "add-extension"] }
|
|
|
|
# Serialization and Data Formats
|
|
bytes = { workspace = true }
|
|
flatbuffers.workspace = true
|
|
rmp-serde.workspace = true
|
|
rustfs-signer.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_urlencoded = { workspace = true }
|
|
|
|
# Cryptography and Security
|
|
rustls = { workspace = true }
|
|
rustls-pki-types = { workspace = true }
|
|
subtle = { workspace = true }
|
|
jiff = { workspace = true }
|
|
time = { workspace = true, features = ["parsing", "formatting", "serde"] }
|
|
|
|
# Utilities and Tools
|
|
astral-tokio-tar = { workspace = true }
|
|
atoi = { workspace = true }
|
|
atomic_enum = { workspace = true }
|
|
base64 = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
base64-simd.workspace = true
|
|
clap = { workspace = true }
|
|
const-str = { workspace = true }
|
|
datafusion = { workspace = true }
|
|
hex-simd.workspace = true
|
|
matchit = { workspace = true }
|
|
md5.workspace = true
|
|
mime_guess = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
pin-project-lite.workspace = true
|
|
rust-embed = { workspace = true, features = ["interpolate-folder-path"] }
|
|
s3s.workspace = true
|
|
shadow-rs = { workspace = true, features = ["build", "metadata"] }
|
|
sysinfo = { workspace = true, features = ["multithread"] }
|
|
thiserror = { workspace = true }
|
|
tracing.workspace = true
|
|
url = { workspace = true }
|
|
urlencoding = { workspace = true }
|
|
uuid = { workspace = true }
|
|
zip = { workspace = true }
|
|
libc = { workspace = true }
|
|
rand = { workspace = true }
|
|
aes-gcm = { workspace = true }
|
|
|
|
# Observability and Metrics
|
|
metrics = { workspace = true }
|
|
opentelemetry = { workspace = true }
|
|
tracing-opentelemetry = { workspace = true }
|
|
# Data structures
|
|
hashbrown = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libsystemd.workspace = true
|
|
|
|
[target.'cfg(not(any(target_os = "linux", target_os = "macos")))'.dependencies]
|
|
mimalloc = { workspace = true }
|
|
libmimalloc-sys = { version = "0.1.49", features = ["extended"] }
|
|
|
|
# jemalloc + pprof-based profiling on linux and macos.
|
|
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
|
|
tikv-jemallocator = { workspace = true }
|
|
tikv-jemalloc-ctl = { workspace = true }
|
|
jemalloc_pprof = { workspace = true }
|
|
pprof = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
serial_test = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
aws-config = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
temp-env = { workspace = true, features = ["async_closure"] }
|
|
tracing-subscriber = { workspace = true }
|
|
opentelemetry_sdk = { workspace = true }
|
|
rsa = { workspace = true }
|
|
rcgen = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
http.workspace = true
|
|
futures.workspace = true
|
|
s3s = { workspace = true }
|
|
clap = { workspace = true }
|
|
hyper-util = { workspace = true, features = [
|
|
"tokio",
|
|
"server-auto",
|
|
"server-graceful",
|
|
] }
|
|
shadow-rs = { workspace = true, features = ["build"] }
|