-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (41 loc) · 1.23 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
[package]
name = "imagefork"
version = "0.1.0"
edition = "2021"
[dependencies]
askama = { version = "*", features = ["with-axum"] }
async-trait = "*"
axum = { version = "*", features = ["tower-log", "macros"] }
axum-extra = { version = "*", features = ["typed-header"] }
axum-login = "*"
axum-prometheus = "*"
base64 = "*"
bb8 = "*"
bb8-diesel = "*"
bb8-redis = "*"
diesel = { version = "*", features = ["time"] }
diesel-async = { version = "*", features = ["postgres", "bb8"] }
figment = { version = "*", features = ["env", "toml"] }
image = { version = "*", features = ["libwebp", "rgb"] }
lazy_static = "*"
mediatype = { version = "*", features = ["serde"] }
metrics = "*"
metrics-exporter-prometheus = "*"
oauth2 = "*"
rand = "*"
reqwest = { version = "*", features = ["json"] }
reqwest-middleware = { version = "*", features = ["json"] }
reqwest-retry = { version = "*", features = ["tracing"] }
reqwest-tracing = "*"
rmp-serde = "*"
rust-embed = "*"
serde = { version = "*", features = ["derive"] }
serde_json = "*"
sha2 = "*"
thiserror = "*"
time = "*"
tokio = { version = "*", features = ["full"] }
tower-sessions = "*"
tracing = "*"
tracing-subscriber = { version = "*", features = ["env-filter"] }
uuid = { version = "*", features = ["serde"] }