-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (34 loc) · 962 Bytes
/
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
[package]
name = "imagefork"
version = "0.1.0"
edition = "2021"
[dependencies]
rocket = { version = "0.5.0-rc", features = ["json", "secrets", "uuid"] }
rocket_prometheus = "0.10.0-rc.3"
rocket_db_pools = { version = "0.1.0-rc", features = [
"sqlx_postgres",
"deadpool_redis",
] }
sqlx = { version = "0.6", features = [
"macros",
"runtime-tokio-rustls",
"postgres",
"chrono",
"migrate",
"offline",
"uuid",
] }
thiserror = "1.0.38"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rust-embed = "6.4.2"
chrono = { version = "0.4.23", features = ["serde"] }
rocket_oauth2 = { version = "0.5.0-rc.1" }
reqwest = { version = "0.11.14", features = ["tokio-rustls", "json"] }
image = { version = "0.24.5", features = ["libwebp", "rgb"] }
sha2 = "0.10.6"
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["handlebars"] }
rand = "0.8"
base64 = "0.21"
uuid = { version = "1.3", features = ["serde"] }
lazy_static = "1.4"