-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (53 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
61 lines (53 loc) · 1.38 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
[package]
name = "maxio"
version = "0.2.0"
edition = "2024"
description = "S3-compatible object storage server — single-binary replacement for MinIO"
license = "Apache-2.0"
repository = "https://github.com/coollabsio/maxio"
authors = ["MaxIO Contributors"]
keywords = ["s3", "object-storage", "minio", "storage", "server"]
categories = ["web-programming::http-server", "filesystem"]
[dependencies]
# HTTP server
axum = "0.8"
tokio = { version = "1", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
hyper = "1"
http = "1"
bytes = "1"
# XML
quick-xml = { version = "0.37", features = ["serialize"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Auth / crypto
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Config
clap = { version = "4", features = ["derive", "env"] }
# Utilities
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
md-5 = "0.10"
crc32fast = "1"
crc32c = "0.6"
sha1 = "0.10"
percent-encoding = "2"
thiserror = "2"
anyhow = "1"
tokio-util = { version = "0.7", features = ["io"] }
futures = "0.3"
base64 = "0.22"
# Embedded UI assets
rust-embed = "8"
mime_guess = "2"
rand = "0.10.0"
reed-solomon-erasure = "6"
[dev-dependencies]
reqwest = { version = "0.12", features = ["json"] }
tempfile = "3"