-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 1.13 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
[package]
name = "megallery"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itertools = "0.10"
anyhow = "1"
thiserror = "1"
measure_time = "0.8"
lazy_static = "1.4"
serde = "1"
serde_bytes = "0.11"
serde_json = "1"
rmp = "0.8"
rmp-serde = "1"
futures-util = "0.3"
futures = "0.3"
axum = { version = "0.6", features = ["multipart", "ws"] }
axum-macros = "0.3"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7" }
image = "0.24"
fast_image_resize = "2.4"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "uuid", "macros", "migrate", "json"] }
uuid = { version = "1.1", features = ["serde", "v4", "fast-rng"] }
dotenv = "0.15"
log = "0.4"
env_logger = "0.9"
tower-http = { version = "0.4", features = ["compression-br", "compression-deflate", "compression-gzip", "cors", "fs"] }
tower = { version = "0.4", features = ["full"] }
cached = { version = "0.42", features = ["async_tokio_rt_multi_thread"] }
color-thief = "0.2"
kamadak-exif = "0.5"
chrono = { version = "0.4", features = ["serde"] }
bhtsne = "0.5"