-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (43 loc) · 1.4 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
[package]
name = "s3-active-storage"
version = "0.1.1"
edition = "2021"
# Due to AWS SDK.
rust-version = "1.66.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
aws-credential-types = { version = "0.55", features = ["hardcoded-credentials"] }
aws-sdk-s3 = "0.27"
aws-smithy-http = "0.55"
aws-smithy-types = "0.55"
aws-types = "0.55"
axum = { version = "0.6", features = ["headers"] }
axum-server = { version = "0.4.7", features = ["tls-rustls"] }
clap = { version = "4.2", features = ["derive", "env"] }
expanduser = "1.2.2"
http = "*"
hyper = { version = "0.14", features = ["full"] }
maligned = "0.2.1"
mime = "0.3"
ndarray = "0.15"
ndarray-stats = "0.5"
num-traits = "0.2.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "*"
schemars = { version = "0.8.11", features = ["url", "bytes"] }
strum_macros = "0.24"
thiserror = "1.0"
tokio = { version = "1.28", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.4", features = ["normalize-path", "trace", "validate-request"] }
tower-service = "0.3"
tokio-stream = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2", features = ["serde"] }
validator = { version = "0.16", features = ["derive"] }
zerocopy = { version = "0.6.1", features = ["alloc", "simd"] }
[dev-dependencies]
regex = "1"
serde_test = "1.0"