forked from LeeSmet/s3-cas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (51 loc) · 1.49 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
[package]
name = "s3-cas"
version = "0.1.0"
edition = "2018"
authors = ["Lee Smet <[email protected]>"]
readme = "README.md"
description = "An experimental S3 server using a cas storage layer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
vendored = ["openssl"]
asm = ["md-5/asm"]
[dependencies]
tokio = { version = "1", features = ["full"] }
fjall = "2.5"
async-trait = "0.1"
md-5 = { version = "0.10.6" }
futures = "0.3"
async-fs = "2.1"
faster-hex = "0.10.0"
uuid = { version = "1.12", features = ["v4"] }
chrono = "0.4"
structopt = { version = "0.3.26" }
anyhow = { version = "1.0.95" }
dotenv = { version = "0.15" }
openssl = { version = "0.10.68", features = ["vendored"], optional = true }
prometheus = { version = "0.13.4", features = ["process"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
s3s = { git = "https://github.com/Nugine/s3s" }
bytes = "1.7.1"
hyper-util = { version = "0.1.9", features = [
"server-auto",
"server-graceful",
"http1",
"http2",
"tokio",
] }
rusoto_core = "0.48.0"
[profile.release]
lto = true
codegen-units = 1
[dev-dependencies]
s3s-aws = { git = "https://github.com/Nugine/s3s", package = "s3s-aws" }
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"
tempfile = "3"
log = "0.4.14"
env_logger = "0.11.6"