mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
30 lines
622 B
TOML
30 lines
622 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["rustfs", "ecstore"]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/rustfs/rustfs"
|
|
rust-version = "1.75"
|
|
|
|
[workspace.dependencies]
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
serde_json = "1.0.117"
|
|
tracing = "0.1.40"
|
|
tracing-error = "0.2.0"
|
|
futures = "0.3.30"
|
|
bytes = "1.6.0"
|
|
http = "1.1.0"
|
|
thiserror = "1.0.61"
|
|
time = { version = "0.3.36", features = [
|
|
"std",
|
|
"parsing",
|
|
"formatting",
|
|
"macros",
|
|
"serde",
|
|
] }
|
|
async-trait = "0.1.80"
|
|
tokio = { version = "1.38.0", features = ["fs"] }
|
|
futures-util = "0.3.30"
|