-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathCargo.toml
66 lines (62 loc) · 1.9 KB
/
Cargo.toml
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
[package]
name = "s3s-fs"
version = "0.11.0-dev"
description = "An experimental S3 server based on file system"
readme = "../../README.md"
keywords = ["s3"]
categories = ["web-programming", "web-programming::http-server"]
edition.workspace = true
repository.workspace = true
license.workspace = true
[[bin]]
name = "s3s-fs"
required-features = ["binary"]
[features]
binary = ["tokio/full", "dep:clap", "dep:tracing-subscriber", "dep:hyper-util"]
[dependencies]
async-trait = "0.1.83"
base64-simd = "0.8.0"
bytes = "1.7.2"
chrono = { version = "0.4.38", default-features = false, features = [
"std",
"clock",
] }
clap = { version = "4.5.20", optional = true, features = ["derive"] }
crc32c = "0.6.8"
futures = "0.3.31"
hex-simd = "0.8.0"
hyper-util = { version = "0.1.9", optional = true, features = [
"server-auto",
"server-graceful",
"http1",
"http2",
"tokio",
] }
md-5 = "0.10.6"
mime = "0.3.17"
std-next = "0.1.1"
numeric_cast = "0.2.1"
path-absolutize = "3.1.1"
s3s = { version = "0.11.0-dev", path = "../s3s" }
serde_json = "1.0.128"
thiserror = "2.0.3"
time = "0.3.36"
tokio = { version = "1.40.0", features = ["fs", "io-util"] }
tokio-util = { version = "0.7.12", features = ["io"] }
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", optional = true, features = [
"env-filter",
"time",
] }
transform-stream = "0.3.0"
uuid = { version = "1.10.0", features = ["v4"] }
[dev-dependencies]
anyhow = { version = "1.0.89", features = ["backtrace"] }
aws-config = { version = "1.5.8", default-features = false }
aws-credential-types = { version = "1.2.1", features = ["test-util"] }
aws-sdk-s3 = { version = "1.56.0", features = ["behavior-version-latest"] }
once_cell = "1.20.2"
s3s-aws = { version = "0.11.0-dev", path = "../s3s-aws" }
tokio = { version = "1.40.0", features = ["full"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }