Files
rustfs/Cargo.toml
2024-08-06 22:59:28 +08:00

29 lines
605 B
TOML

[workspace]
resolver = "2"
members = ["rustfs", "ecstore"]
[workspace.package]
edition = "2021"
license = "MIT OR 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"] }