-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (68 loc) · 1.84 KB
/
Cargo.toml
File metadata and controls
81 lines (68 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
resolver = "2"
members = ["crates/cli", "crates/core", "crates/s3"]
[workspace.package]
version = "0.1.4"
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustfs/cli"
homepage = "https://github.com/rustfs/cli"
description = "A Rust S3 CLI client for S3-compatible object storage"
keywords = ["s3", "cli", "storage", "aws", "object-storage"]
categories = ["command-line-utilities", "filesystem"]
[workspace.dependencies]
# RustFS Internal Crates
rc-core = { path = "./crates/core", version = "0.1.4" }
rc-s3 = { path = "./crates/s3", version = "0.1.4" }
rustfs-cli = { path = "./crates/cli", version = "0.1.4" }
# Async runtime
tokio = { version = "1.49", features = ["full"] }
# AWS SDK
aws-sdk-s3 = "1.119"
aws-config = { version = "1.8", features = ["behavior-version-latest"] }
aws-credential-types = "1.2"
aws-smithy-types = "1.3"
aws-smithy-runtime-api = "1.9"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Output formatting
indicatif = "0.18"
comfy-table = "7.2"
console = "0.16"
# Utilities
dirs = "6.0"
jiff = { version = "0.2", features = ["serde"] }
humansize = "2.1"
bytes = "1.11"
url = "2.5"
futures = "0.3"
async-trait = "0.1"
mime_guess = "2.0"
glob = "0.3"
# HTTP client for Admin API
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
aws-sigv4 = "1.2"
http = "1.2"
sha2 = "0.10"
hex = "0.4"
urlencoding = "2.1"
# Testing
tempfile = "3.24"
mockall = "0.14"
insta = { version = "1.46", features = ["json"] }
[profile.release]
lto = true
codegen-units = 1
strip = true