-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.26 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
[package]
name = "s3cli"
version = "0.1.1"
edition = "2021"
authors = ["s3cli Team <team@s3cli.com>"]
description = "CLI-first S3 storage for developers and AI agents"
license = "MIT OR Apache-2.0"
rust-version = "1.75"
repository = "https://github.com/itz4blitz/s3cli"
keywords = ["s3", "cli", "storage", "cloud", "r2"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5", features = ["derive", "usage", "help"] }
clap_complete = "4.5"
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"
reqwest = { version = "0.12", features = ["json", "stream"] }
figment = { version = "0.10", features = ["toml", "env"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uuid = { version = "1.0", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
dirs = "5.0"
indicatif = "0.17"
bytes = "1.0"
bytesize = "1.0"
mime_guess = "2.0"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
base64 = "0.22"
arboard = "3.4"
[dev-dependencies]
tempfile = "3.8"
mockall = "0.12"
tokio-test = "0.4"
[features]
default = []
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
opt-level = "z"