-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (49 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
53 lines (49 loc) · 1.46 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
[workspace]
members = [
"metastore",
"s3cas",
"respd",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2018"
authors = ["Lee Smet <lee.smet@hotmail.com>"]
readme = "README.md"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
fjall = "2.9.0"
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"
anyhow = { version = "1.0.95" }
dotenv = { version = "0.15" }
openssl = { version = "0.10.68", features = ["vendored"] }
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"
hyper = { version = "1.6.0" }
http-body-util = "0.1.2"
clap = { version = "4.5.32", features = ["derive"] }
# 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"
criterion = { version = "0.5", features = ["html_reports"] }
rand = "0.8"
[profile.release]
lto = true
codegen-units = 1