-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathCargo.toml
More file actions
139 lines (121 loc) · 3.37 KB
/
Copy pathCargo.toml
File metadata and controls
139 lines (121 loc) · 3.37 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[workspace]
members = ["crates/*", "codegen"]
resolver = "3"
[workspace.package]
edition = "2024"
repository = "https://github.com/Nugine/s3s"
license = "Apache-2.0"
rust-version = "1.96.0"
[workspace.lints.rust]
unsafe_code = "forbid"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[workspace.lints.clippy]
# deny
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
self_named_module_files = "deny"
# warn
dbg_macro = "warn"
# allow
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
[profile.release]
debug = "line-tables-only"
[workspace.dependencies]
# Data structures
arc-swap = "1.9.2"
arrayvec = "0.7.8"
bytes = "1.12.1"
bytestring = "1.5.1"
indexmap = "2.14.0"
minstant = "0.1.7"
once_cell = "1.21.4"
smallvec = "1.15.2"
uuid = "1.24.0"
# Text encoding
atoi = { version = "3.1.0", default-features = false }
base64-simd = "0.8.0"
hex-simd = "0.8.0"
itoa = "1.0.18"
nom = "8.0.0"
regex = "1.13.1"
s3s-multipart = { path = "crates/s3s-multipart", version = "0.16.0-alpha.1" }
s3s-rfc2047 = { path = "crates/s3s-rfc2047", version = "0.16.0-alpha.1" }
# Date & time
chrono = { version = "0.4.45", default-features = false }
jiff = "0.2.35"
time = "0.3.53"
# Utilities
cfg-if = "1.0.4"
const-str = "1.1.0"
memchr = "2.8.3"
numeric_cast = "0.3.0"
path-absolutize = "4.0.1"
phf = "0.14.0"
phf_codegen = "0.14.0"
std-next = "0.1.9"
# Crypto
crc-fast = "1.10.0"
crc32c = "0.6.8"
hmac = "0.13.0"
md-5 = "0.11.0"
openssl = "0.10.81"
sha1 = "0.11.0"
sha2 = "0.11.0"
subtle = "2.6.1"
xxhash-rust = { version = "0.8.17", default-features = false, features = ["std", "xxh64", "xxh3"] }
zeroize = "1.9.0"
# Error handling
anyhow = "1.0.103"
thiserror = "2.0.18"
# Serialization
quick-xml = { version = "0.42.0", features = ["serialize"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
serde_urlencoded = "0.7.1"
# Async & concurrency
async-trait = "0.1.92"
futures = { version = "0.3.32", default-features = false }
futures-util = "0.3.32"
pin-project-lite = "0.2.17"
sync_wrapper = { version = "1.0.2", default-features = false }
tokio = "1.52.3"
tokio-util = "0.7.18"
transform-stream = "0.3.1"
# HTTP
axum = "0.8.9"
http = "1.4.2"
http-body = "1.1.0"
http-body-util = "0.1.4"
httparse = "1.10.1"
hyper = "1.10.1"
hyper-util = "0.1.20"
mime = "0.3.17"
tokio-rustls = "0.26.4"
tower = { version = "0.5.3", default-features = false }
url = "2.5.8"
urlencoding = "2.1.3"
reqwest = { version = "0.13.4", default-features = false, features = ["rustls", "form", "query"] }
# Logging & observability
tracing = "0.1.44"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "time"] }
# CLI
clap = { version = "4.6.2", features = ["derive"] }
# Benchmarks
criterion = "0.8"
mimalloc = "0.1"
multer = "3.1.0"
rand = "0.10"
# Storage backends
opendal = { version = "0.58.0", default-features = false }
# AWS SDK
aws-config = { version = "1.9.0", default-features = false }
aws-credential-types = "1.3.0"
aws-sdk-s3 = { version = "1.143.0", default-features = false, features = ["default-https-client", "http-1x", "rt-tokio", "sigv4a"] }
aws-sdk-sts = { version = "1.108.0", default-features = false, features = ["default-https-client", "rt-tokio"] }
aws-smithy-runtime-api = "1.13.0"
aws-smithy-types = "1.6.1"
aws-smithy-types-convert = "0.61.1"
minio = "0.4.0"