forked from datenlord/s3-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (75 loc) · 2.06 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
73
74
75
76
77
78
79
80
81
[package]
name = "s3-server"
version = "0.2.0"
authors = ["stdpi <[email protected]>", "Nugine <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/hUwUtao/s3-server"
readme = "README.md"
description = "An experimental generic S3 server"
keywords = ["s3"]
categories = ["web-programming", "web-programming::http-server"]
rust-version = "1.81"
default-run = "s3-server"
[features]
default = ["binary"]
tokio_unstable = ["console-subscriber"]
binary = ["anyhow", "dotenv", "structopt", "tokio", "tracing-subscriber"]
[[bin]]
name = "s3-server"
required-features = ["binary"]
[[bin]]
name = "s3-sec"
required-features = ["binary"]
[dependencies]
anyhow = { version = "1.0.57", optional = true }
async-fs = "2.1.2"
async-trait = "0.1.53"
backtrace = "0.3.65"
base64 = "0.22.1"
base64-simd = "0.8.0"
chrono = "0.4.19"
console-subscriber = { version = "0.4.0", optional = true }
const-str = { version = "0.5", features = ["regex"] }
dotenv = { version = "0.15.0", optional = true }
futures = "0.3.21"
hex-simd = "0.8.0"
hmac = "0.12.1"
http = "1.1.0"
httparse = "1.7.0"
hyper = { version = "=0.14", features = ["server"] }
md-5 = "0.10.1"
memchr = "2.4.1"
mime = "0.3.16"
mur3 = "0.1.0"
nom = "7.1.1"
once_cell = "1.10.0"
path-absolutize = "3.0.13"
path-matchers = "1.0.2"
pin-project-lite = "0.2.8"
quick-xml = { version = "0.36", features = ["serialize"] }
rand = "0.8.5"
regex = "1.5.5"
rusoto_core = "0.48.0"
rusoto_s3 = "0.48.0"
serde = { version = "1.0.136", features = ["derive"] }
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"
[dev-dependencies]
tokio = { version = "1.17.0", features = ["full"] }