mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-28 00:58:59 +00:00
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "rustfs-concurrency"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
homepage.workspace = true
|
|
description = "Concurrency management for RustFS - timeout, locking, backpressure, and I/O scheduling"
|
|
keywords = ["rustfs", "concurrency", "timeout", "backpressure", "scheduling"]
|
|
categories = ["concurrency", "filesystem"]
|
|
|
|
[dependencies]
|
|
# Internal crates
|
|
rustfs-io-core = { workspace = true }
|
|
rustfs-io-metrics = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["sync", "time", "rt"] }
|
|
tokio-util = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util","macros","rt-multi-thread"] }
|
|
|
|
[features]
|
|
default = ["timeout", "lock", "deadlock", "backpressure", "scheduler"]
|
|
|
|
# Feature modules
|
|
timeout = []
|
|
lock = []
|
|
deadlock = []
|
|
backpressure = []
|
|
scheduler = []
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|