forked from datenlord/s3-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (68 loc) · 1.77 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
67
68
69
70
71
72
[package]
name = "s3-server"
version = "0.2.0"
authors = ["Nugine <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/datenlord/s3-server"
readme = "README.md"
description = "An experimental generic S3 server"
keywords = ["s3"]
categories = ["web-programming", "web-programming::http-server"]
rust-version = "1.59"
[features]
default = []
binary = [
"anyhow",
"dotenv",
"structopt",
"tokio",
"tracing-subscriber"
]
[[bin]]
name = "s3-server"
required-features = ["binary"]
[dependencies]
anyhow = { version = "1.0.57", optional = true }
async-fs = "1.5.0"
async-trait = "0.1.53"
backtrace = "0.3.65"
base64-simd = "0.8.0"
chrono = "0.4.19"
const-str = { version = "0.3.1", features = ["verify-regex"] }
dotenv = { version = "0.15.0", optional = true }
futures = "0.3.21"
hex-simd = "0.8.0"
hmac = "0.12.1"
http = "0.2.7"
httparse = "1.7.0"
hyper = { version = "0.14.18", features = ["server"] }
md-5 = "0.10.1"
memchr = "2.4.1"
mime = "0.3.16"
nom = "7.1.1"
once_cell = "1.10.0"
path-absolutize = "3.0.13"
pin-project-lite = "0.2.8"
quick-xml = { version = "0.27.1", features = ["serialize"] }
regex = "1.5.5"
rusoto_core = "0.48.0"
rusoto_s3 = "0.48.0"
serde = "1.0.136"
serde_json = "1.0.79"
serde_urlencoded = "0.7.1"
sha2 = "0.10.2"
smallvec = "1.8.0"
structopt = { version = "0.3.26", optional = true }
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["full"], optional = true }
tracing = "0.1.34"
tracing-error = "0.2.0"
tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.11", optional = true, features = ["env-filter", "time"] }
transform-stream = "0.3.0"
urlencoding = "2.1.0"
uuid = { version = "1.0.0", features = ["v4"] }
xml-rs = "0.8.4"
[dev-dependencies]
tokio = { version = "1.17.0", features = ["full"] }